ee.Geometry.Rectangle.area

Restituisce l'area della geometria. 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).

UtilizzoResi
Rectangle.area(maxError, proj)Float
ArgomentoTipoDettagli
questo: geometryGeometriaL'input della geometria.
maxErrorErrorMargin, valore predefinito: nullLa quantità massima di errore tollerata durante l'esecuzione di qualsiasi riproiezione necessaria.
projProiezione, valore predefinito: nullSe specificato, il risultato sarà nelle unità del sistema di coordinate di questa proiezione. In caso contrario, sarà in metri quadrati.

Esempi

Editor di codice (JavaScript)

// Define a Rectangle object.
var rectangle = ee.Geometry.Rectangle(-122.09, 37.42, -122.08, 37.43);

// Apply the area method to the Rectangle object.
var rectangleArea = rectangle.area({'maxError': 1});

// Print the result to the console.
print('rectangle.area(...) =', rectangleArea);

// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(rectangle,
             {'color': 'black'},
             'Geometry [black]: rectangle');

Configurazione di Python

Consulta la pagina Ambiente Python per informazioni sull'API Python e sull'utilizzo di geemap per lo sviluppo interattivo.

import ee
import geemap.core as geemap

Colab (Python)

# Define a Rectangle object.
rectangle = ee.Geometry.Rectangle(-122.09, 37.42, -122.08, 37.43)

# Apply the area method to the Rectangle object.
rectangle_area = rectangle.area(maxError=1)

# Print the result.
display('rectangle.area(...) =', rectangle_area)

# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(rectangle, {'color': 'black'}, 'Geometry [black]: rectangle')
m