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.Feature.area
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Restituisce l'area della geometria predefinita della funzionalità. L'area di punti e stringhe di linee è 0 e l'area di più geometrie è la somma delle aree dei relativi componenti (le aree che si intersecano vengono conteggiate più volte).
Utilizzo | Resi |
---|
Feature.area(maxError, proj) | Float |
Argomento | Tipo | Dettagli |
---|
questo: feature | Elemento | La funzionalità da cui viene presa la geometria. |
maxError | ErrorMargin, valore predefinito: null | La quantità massima di errore tollerata durante l'esecuzione di qualsiasi riproiezione necessaria. |
proj | Proiezione, valore predefinito: null | Se specificato, il risultato sarà nelle unità del sistema di coordinate di questa proiezione. In caso contrario, sarà in metri quadrati. |
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\u003eThe \u003ccode\u003earea()\u003c/code\u003e function calculates and returns the area of a feature's geometry.\u003c/p\u003e\n"],["\u003cp\u003ePoints and line strings have an area of 0, while the area of multi-geometries is the sum of their component areas.\u003c/p\u003e\n"],["\u003cp\u003eThe returned area is in square meters by default, but can be calculated in the units of a specified projection.\u003c/p\u003e\n"],["\u003cp\u003eYou can specify a maximum error tolerance for reprojection during area calculation.\u003c/p\u003e\n"]]],["The function calculates the area of a feature's default geometry, returning a float value. Point and line string geometries return an area of 0, while multi-geometries return the sum of their component areas. The `maxError` argument controls reprojection error tolerance, and `proj` specifies the output projection; otherwise, the area is returned in square meters. The function takes a feature element as the primary input.\n"],null,["# ee.Feature.area\n\nReturns the area of the feature's default geometry. Area of points and line strings is 0 and the area of multi geometries is the sum of the areas of their components (intersecting areas are counted multiple times).\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------|---------|\n| Feature.area`(`*maxError* `, `*proj*`)` | Float |\n\n| Argument | Type | Details |\n|-----------------|----------------------------|-----------------------------------------------------------------------------------------------------------------------------------|\n| this: `feature` | Element | The feature from which the geometry is taken. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | If specified, the result will be in the units of the coordinate system of this projection. Otherwise it will be in square meters. |"]]