ee.Feature.withinDistance
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Gibt „true“ zurück, wenn die Geometrien zweier Elemente innerhalb einer bestimmten Entfernung liegen.
Nutzung | Ausgabe |
---|
Feature.withinDistance(right, distance, maxError, proj) | Boolesch |
Argument | Typ | Details |
---|
So gehts: left | Element | Das Feature mit der Geometrie, die als linker Operand der Operation verwendet wird. |
right | Element | Das Feature mit der Geometrie, die als rechter Operand des Vorgangs verwendet wird. |
distance | Gleitkommazahl | Der Abstandsgrenzwert. Wenn eine Projektion angegeben ist, wird die Entfernung in Einheiten dieses projizierten Koordinatensystems angegeben. Andernfalls wird sie in Metern angegeben. |
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\u003e\u003ccode\u003ewithinDistance\u003c/code\u003e determines if two geographic features are within a specified distance of each other, returning true if they are and false otherwise.\u003c/p\u003e\n"],["\u003cp\u003eThe distance threshold can be defined in meters or in the units of a given projected coordinate system.\u003c/p\u003e\n"],["\u003cp\u003eThis function considers the geometries of the features and can handle reprojection with a specified error margin if necessary.\u003c/p\u003e\n"]]],["The core function determines if two feature geometries are within a specified distance. It takes two features (`left`, `right`) and a `distance` (in meters or specified projection units) as input, returning a Boolean. Optional arguments include `maxError` for reprojection tolerance and `proj` to define the projection. The operation checks if `left` is within the given `distance` of `right`, considering the provided projection or defaulting to a spherical coordinate system.\n"],null,["# ee.Feature.withinDistance\n\nReturns true if and only if the geometries of two features are within a specified distance.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------|---------|\n| Feature.withinDistance`(right, distance, `*maxError* `, `*proj*`)` | Boolean |\n\n| Argument | Type | Details |\n|--------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `left` | Element | The feature containing the geometry used as the left operand of the operation. |\n| `right` | Element | The feature containing the geometry used as the right operand of the operation. |\n| `distance` | Float | The distance threshold. If a projection is specified, the distance is in units of that projected coordinate system, otherwise it is in meters. |\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. |"]]