- Categories:
ST_ AREA¶
Returns the area of the Polygon(s) in a GEOGRAPHY or GEOMETRY object.
Syntax¶
Arguments¶
geography_or_geometry_expressionThe argument must be of type GEOGRAPHY or GEOMETRY.
Returns¶
Returns a REAL value, which represents the area:
- For GEOGRAPHY input values, the area is in square meters.
- For GEOMETRY input values, the area is computed with the same units used to define the input coordinates.
Usage notes¶
- If
geography_expressionis not a Polygon, MultiPolygon, or GeometryCollection containing polygons, ST_AREA returns 0. - If
geography_expressionis a GeometryCollection, ST_AREA returns the sum of the areas of the polygons in the collection.
Examples¶
GEOGRAPHY examples¶
This uses the ST_AREA function with GEOGRAPHY objects to calculate the area of Earth’s surface 1 degree on each side with the bottom of the area on the equator:
GEOMETRY examples¶
The following example calls the ST_AREA function with GEOMETRY objects that represent a Point, LineString, and Polygon.