ee.Geometry.Point.closestPoints
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Gibt ein Dictionary mit bis zu zwei Einträgen zurück, die jeweils einen Punkt auf der Eingabegeometrie darstellen, der der anderen Eingabegeometrie am nächsten liegt. Wenn eine der beiden Geometrien leer ist, wird ein leeres Dictionary zurückgegeben. Wenn beide Geometrien unbegrenzt sind, enthält das Dictionary einen beliebigen Punkt für „left“ und „right“. Wenn eine Geometrie unbegrenzt ist, enthält das Dictionary für „left“ und „right“ einen beliebigen Punkt, der in der begrenzten Geometrie enthalten ist.
Nutzung | Ausgabe |
---|
Point.closestPoints(right, maxError, proj) | Objekt |
Argument | Typ | Details |
---|
So gehts: left | Geometrie | Die Geometrie, die als linker Operand des Vorgangs verwendet wird. |
right | Geometrie | Die Geometrie, die als rechter Operand des Vorgangs verwendet wird. |
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 dictionary with points on each geometry closest to the other, identified as 'left' and 'right'.\u003c/p\u003e\n"],["\u003cp\u003eIf either input geometry is empty, the result is an empty dictionary.\u003c/p\u003e\n"],["\u003cp\u003eUnbounded geometries result in arbitrary points within the dictionary, either for both entries or the bounded geometry's entry.\u003c/p\u003e\n"],["\u003cp\u003eThe function accepts \u003ccode\u003eleft\u003c/code\u003e, \u003ccode\u003eright\u003c/code\u003e, optional \u003ccode\u003emaxError\u003c/code\u003e, and optional \u003ccode\u003eproj\u003c/code\u003e arguments for geometry, error margin, and projection, respectively.\u003c/p\u003e\n"],["\u003cp\u003eThe default projection is spherical with distances in meters unless a specific \u003ccode\u003eproj\u003c/code\u003e is provided.\u003c/p\u003e\n"]]],[],null,["# ee.Geometry.Point.closestPoints\n\nReturns a dictionary containing up to two entries representing a point on each input geometry that is closest to the other input geometry. If either geometry is empty, an empty dictionary is returned. If both geometries are unbounded, the dictionary has an arbitrary point for both 'left' and 'right'. If one geometry is unbounded, the dictionary has an arbitrary point contained in the bounded geometry for both 'left' and 'right'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------------------|---------|\n| Point.closestPoints`(right, `*maxError* `, `*proj*`)` | Object |\n\n| Argument | Type | Details |\n|--------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `left` | Geometry | The geometry used as the left operand of the operation. |\n| `right` | Geometry | The geometry used as the right operand of the operation. |\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. |"]]