ES|QL ST_Y function
point-
Expression of type
geo_pointorcartesian_point. Ifnull, the function returnsnull.
Extracts the y coordinate from the supplied point. If the point is of type geo_point this is equivalent to extracting the latitude value.
| point | result |
|---|---|
| cartesian_point | double |
| geo_point | double |
ROW point = TO_GEOPOINT("POINT(42.97109629958868 14.7552534006536)")
| EVAL x = ST_X(point), y = ST_Y(point)
| point:geo_point | x:double | y:double |
|---|---|---|
| POINT(42.97109629958868 14.7552534006536) | 42.97109629958868 | 14.7552534006536 |