Annuncio: tutti i progetti non commerciali registrati per l'utilizzo di Earth Engine prima del
15 aprile 2025 devono
verificare l'idoneità non commerciale per mantenere l'accesso a Earth Engine.
ee.Geometry.Rectangle.closestPoints
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Restituisce un dizionario contenente fino a due voci che rappresentano un punto su ogni geometria di input più vicino all'altra geometria di input. Se una delle due geometrie è vuota, viene restituito un dizionario vuoto. Se entrambe le geometrie non sono delimitate, il dizionario ha un punto arbitrario sia per "sinistra" che per "destra". Se una geometria non è delimitata, il dizionario contiene un punto arbitrario contenuto nella geometria delimitata sia per "left" che per "right".
Utilizzo | Resi |
---|
Rectangle.closestPoints(right, maxError, proj) | Oggetto |
Argomento | Tipo | Dettagli |
---|
questo: left | Geometria | La geometria utilizzata come operando sinistro dell'operazione. |
right | Geometria | La geometria utilizzata come operando destro dell'operazione. |
maxError | ErrorMargin, valore predefinito: null | La quantità massima di errore tollerata durante l'esecuzione di qualsiasi riproiezione necessaria. |
proj | Proiezione, valore predefinito: null | La proiezione in cui eseguire l'operazione. Se non specificato, l'operazione verrà eseguita in un sistema di coordinate sferiche e le distanze lineari saranno in metri sulla sfera. |
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-26 UTC.
[null,null,["Ultimo aggiornamento 2025-07-26 UTC."],[[["\u003cp\u003eReturns a dictionary representing the closest points between two geometries, containing entries for 'left' and 'right'.\u003c/p\u003e\n"],["\u003cp\u003eIf either input geometry is empty, an empty dictionary is returned.\u003c/p\u003e\n"],["\u003cp\u003eFor unbounded geometries, arbitrary points may be returned for 'left' and 'right'.\u003c/p\u003e\n"],["\u003cp\u003eAccepts optional \u003ccode\u003emaxError\u003c/code\u003e and \u003ccode\u003eproj\u003c/code\u003e arguments to control reprojection and coordinate system.\u003c/p\u003e\n"]]],["The function `closestPoints` identifies the nearest points between two geometries (`left` and `right`), returning them in a dictionary. The dictionary can have up to two point entries. An empty dictionary signifies empty input geometries. For unbounded geometries, arbitrary points are returned. The operation allows specification of `maxError` and `proj` for accuracy control, defaulting to spherical coordinates if `proj` is null.\n"],null,["# ee.Geometry.Rectangle.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| Rectangle.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. |"]]