ee.Feature.convexHull
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Gibt das Attribut zurück, dessen Geometrie durch die konvexe Hülle der ursprünglichen Geometrie ersetzt wurde. Die konvexe Hülle eines einzelnen Punkts ist der Punkt selbst, die konvexe Hülle von kollinearen Punkten ist eine Linie und die konvexe Hülle aller anderen Elemente ist ein Polygon. Ein degeneriertes Polygon, bei dem alle Eckpunkte auf derselben Linie liegen, ergibt ein Liniensegment.
Nutzung | Ausgabe |
---|
Feature.convexHull(maxError, proj) | Funktion |
Argument | Typ | Details |
---|
So gehts: feature | Element | Das Feature mit dem gesamten Rumpf der Geometrie wird berechnet. |
maxError | ErrorMargin, Standardwert: null | Die maximale Fehlergröße, die bei einer erforderlichen Rückprojektion toleriert wird. |
proj | Projektion, Standardwert: null | Die Projektion, in der der Vorgang ausgeführt werden soll. Wenn nichts angegeben ist, wird der Vorgang in einem sphärischen Koordinatensystem ausgeführt und lineare Entfernungen werden in Metern auf der Kugel angegeben. |
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2025-07-26 (UTC).
[null,null,["Zuletzt aktualisiert: 2025-07-26 (UTC)."],[[["\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. |"]]