GEOMETRYAREA
Takes one or more features and returns their area in square meters.
Parameters
geojson
GeoJSON (required) - input GeoJSON feature(s)
Returns
number - Point distance units along the line
Examples
INSPECT(GEOMETRYAREA(GEOMETRY())
// returns in sq meters
// 82487.30619407611
SETRESULT(parseFloat(INSPECT(GEOMETRYAREA(GEOMETRY()) / 4046.86)).toFixed(3))
// returns in Acres
// toFixed controls the number of decimal points
Updated 3 months ago