> ## 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_Azimuth

Returns Azimuth for two given points in radians. Returns null if the two points are identical.

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

## Signatures

```sql theme={"system"}
ST_Azimuth(pointA: Point, pointB: Point)
```

## Parameters

<ParamField body="pointA" type="Point" required>
  The input point.
</ParamField>

<ParamField body="pointB" type="Point" required>
  The second input point.
</ParamField>

## Return type

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

## Example

```sql theme={"system"}
SELECT ST_Azimuth(ST_POINT(0.0, 25.0), ST_POINT(0.0, 0.0))
```

```
3.141592653589793
```
