MI_Y
Description
Returns the y coordinate of a Point geometry.
Syntax
MI_Y ( point_geometry )
Arguments
point_geometry is an expression which returns a feature geometry of type Point.
Example
Returns the y coordinate point for the centroid of countries starting with 'G'.
select Country,MI_Y(MI_Centroid([Geometry_Column])) as MI_Y from countries where country like 'G%'
Remarks
The value returned is a double and represents a value in terms of the coordinate system of the input point_geometry. If the input geometry is not a Point geometry, then null is returned.