# ST_Y

Extracts the `y` coordinate from a point. For points of type `geo_point`, this is equivalent to extracting the latitude value.

## Syntax

`ST_Y(point)`

### Parameters

#### point

Expression of type `geo_point` or `cartesian_point`. If the value is `null`, the function returns `null`.

## Examples

Extract the x and y coordinates from a geo point:

```esql
ROW point = TO_GEOPOINT("POINT(42.97109629958868 14.7552534006536)")
| EVAL x =  ST_X(point), y = ST_Y(point)
```
