Skip to main content

ST_YMAX

Introduced or updated: v1.2.512

Returns the maximum latitude (Y coordinate) of all points contained in the specified GEOMETRY object.

Syntax

ST_YMAX(<geometry>)

Arguments

ArgumentsDescription
<geometry>The argument must be an expression of type GEOMETRY.

Return Type

Double.

Examples

SELECT
ST_YMAX(
TO_GEOMETRY(
'GEOMETRYCOLLECTION(POINT(180 50),LINESTRING(10 10,20 20,10 40),POINT EMPTY)'
)
) AS pipeline_ymax;

┌───────────────┐
│ pipeline_ymax │
├───────────────┤
50
└───────────────┘

SELECT
ST_YMAX(
TO_GEOMETRY(
'GEOMETRYCOLLECTION(POINT(40 10),LINESTRING(10 10,20 20,10 40),POLYGON((40 40,20 45,45 30,40 40)))'
)
) AS pipeline_ymax;

┌───────────────┐
│ pipeline_ymax │
├───────────────┤
45
└───────────────┘
Did this page help you?
Yes
No
Explore Databend Cloud for FREE
Low-cost
Fast Analytics
Easy Data Ingestion
Elastic Scaling
Try it today