ee.Feature.convexHull
Returns 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.
Usage | Returns |
---|
Feature.convexHull(maxError, proj) | Feature |
Argument | Type | Details |
---|
this: feature | Element | The feature containing the geometry whole hull is being calculated. |
maxError | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |
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. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-13 UTC.
[null,null,["Last updated 2024-07-13 UTC."],[[["Returns a Feature with the geometry replaced by its convex hull, which represents the smallest convex polygon that encloses all points of the original geometry."],["The convex hull can be a point, a line, or a polygon, depending on the input geometry."],["The function accepts an optional `maxError` parameter for reprojection tolerance and a `proj` parameter to specify the projection."]]],["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"]]