公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.Feature.convexHull
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
返回几何图形被替换为原始几何图形的凸包的要素。单个点的凸包是该点本身,共线点的凸包是一条线,而其他任何点的凸包都是一个多边形。请注意,如果退化多边形的所有顶点都位于同一条直线上,则会生成线段。
用法 | 返回 |
---|
Feature.convexHull(maxError, proj) | 功能 |
参数 | 类型 | 详细信息 |
---|
此:feature | 元素 | 正在计算包含几何图形整个凸壳的要素。 |
maxError | ErrorMargin,默认值:null | 执行任何必要的重新投影时可容忍的最大误差量。 |
proj | 投影,默认值:null | 执行操作的投影。如果未指定,则操作将在球面坐标系中执行,并且球面上的直线距离将以米为单位。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eReturns a Feature with the geometry replaced by its convex hull, which represents the smallest convex polygon that encloses all points of the original geometry.\u003c/p\u003e\n"],["\u003cp\u003eThe convex hull can be a point, a line, or a polygon, depending on the input geometry.\u003c/p\u003e\n"],["\u003cp\u003eThe function accepts an optional \u003ccode\u003emaxError\u003c/code\u003e parameter for reprojection tolerance and a \u003ccode\u003eproj\u003c/code\u003e parameter to specify the projection.\u003c/p\u003e\n"]]],["The `convexHull` function replaces a feature's geometry with its convex hull. A single point remains a point, collinear points become a line, and other cases result in a polygon (possibly a line segment if degenerate). It accepts optional `maxError` for reprojection tolerance and `proj` to specify the projection. If projection isn't specified the operation uses a spherical coordinate system with meters for distance.\n"],null,["# ee.Feature.convexHull\n\nReturns the feature with the geometry replaced by the convex hull of the original geometry. The convex hull of a single point is the point itself, the convex hull of collinear points is a line, and the convex hull of everything else is a polygon. Note that a degenerate polygon with all vertices on the same line will result in a line segment.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------|---------|\n| Feature.convexHull`(`*maxError* `, `*proj*`)` | Feature |\n\n| Argument | Type | Details |\n|-----------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `feature` | Element | The feature containing the geometry whole hull is being calculated. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | The projection in which to perform the operation. If not specified, the operation will be performed in a spherical coordinate system, and linear distances will be in meters on the sphere. |"]]