公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.Algorithms.GeometryConstructors.BBox
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
构建一个边为纬度和经度线的矩形。
结果是一个平面 WGS84 矩形。
如果(东经 - 西经)≥ 360,则经度范围将归一化为 -180 到 +180;否则,它们将被视为指定圆上的点(例如,东经可能在数值上小于西经)。
用法 | 返回 |
---|
ee.Algorithms.GeometryConstructors.BBox(west, south, east, north) | 几何图形 |
参数 | 类型 | 详细信息 |
---|
west | 浮点数 | 最西侧的封闭经度。将调整为介于 -180 到 180 之间。 |
south | 浮点数 | 最南端的封闭纬度。如果小于 -90(南极),则会被视为 -90。 |
east | 浮点数 | 最东侧的封闭经度。 |
north | 浮点数 | 最北端的封闭纬度。如果大于 +90(北极),则会被视为 +90。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[],["This describes creating a WGS84 rectangle using latitude and longitude. The function `BBox` takes four float arguments: `west`, `south`, `east`, and `north`, representing the rectangle's boundaries. Longitude values are normalized to -180 to +180 if the difference between `east` and `west` is 360 or more; otherwise they define points on a circle. Latitude values are clamped between -90 and +90. The function returns a Geometry object.\n"],null,[]]