1

I need a way to get the Nth LineString from a MultiLineString in PostGIS / PostgreSQL, something like ST_PointN that gets the Nth point from a LineString.

Paco Valdez
  • 1,915
  • 14
  • 26

1 Answers1

4

PostGIS function:

ST_GeometryN(a_geom geometry, dimension int)
Paco Valdez
  • 1,915
  • 14
  • 26