ee.Feature.withinDistance
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Renvoie "true" si et seulement si les géométries de deux entités se trouvent à une distance spécifiée.
Utilisation | Renvoie |
---|
Feature.withinDistance(right, distance, maxError, proj) | Booléen |
Argument | Type | Détails |
---|
ceci : left | Élément | Entité contenant la géométrie utilisée comme opérande de gauche de l'opération. |
right | Élément | Entité contenant la géométrie utilisée comme opérande de droite de l'opération. |
distance | Float | Seuil de distance. Si une projection est spécifiée, la distance est exprimée dans les unités de ce système de coordonnées projeté. Sinon, elle est exprimée en mètres. |
maxError | ErrorMargin, valeur par défaut : null | Quantité maximale d'erreur tolérée lors de toute reprojection nécessaire. |
proj | Projection, valeur par défaut : null | Projection dans laquelle effectuer l'opération. Si elle n'est pas spécifiée, l'opération sera effectuée dans un système de coordonnées sphériques et les distances linéaires seront exprimées en mètres sur la sphère. |
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[null,null,["Dernière mise à jour le 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. |"]]