Skip to content

ST_YMin

Returns the minimum Y coordinate of a geometry’s bounding box.

Usage

double ST_YMin(geom: geometry)

Arguments

  • geom (geometry): Input geometry

Examples

SELECT ST_YMin(ST_GeomFromText('LINESTRING(0 0, 5 4)'));
┌────────────────────────────────────────────────────────┐
│ st_ymin(st_geomfromtext(Utf8("LINESTRING(0 0, 5 4)"))) │
│                         float64                        │
╞════════════════════════════════════════════════════════╡
│                                                    0.0 │
└────────────────────────────────────────────────────────┘