Description
The ST_YMin
function returns the Y minima of a geometry, or Null if the
specified value is not a geometry.
Syntax
ST_YMin(WritableGeometry geometry)
Parameters
Parameter | Type | Description |
---|---|---|
geometry | WritableGeometry | The input geometry. |
Return Values
Return Type | Description |
---|---|
Double | The Y minima of the input geometry, or Null if the specified value is not a geometry. |
Examples
SELECT ST_YMin(ST_GeomFromWKT(s.geometry, 'epsg:4326')) FROM src s;