> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_Area

Return the area of A

<img src="https://mintcdn.com/wherobots/AayJA2u8CknIeTgt/images/sql-functions/ST_Area/ST_Area.svg?fit=max&auto=format&n=AayJA2u8CknIeTgt&q=85&s=e75647a4f772767b02eb2f27f7554cf0" alt="ST_Area" width="500" height="300" data-path="images/sql-functions/ST_Area/ST_Area.svg" />

## Signatures

```sql theme={"system"}
ST_Area (A: Geometry)
```

## Parameters

<ParamField body="A" type="Geometry" required>
  The input geometry.
</ParamField>

## Return type

<ResponseField type="Double">
  A numeric value.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_Area(ST_GeomFromText("POLYGON(0 0, 0 10, 10 10, 0 10, 0 0)"))
```

```
10
```
