我需要一种从PostGIS / PostgreSQL中的MultiLineString获取第N个LineString的方法,类似于从LineString获取第N个点的ST_PointN。
发布于 2011-12-17 03:07:28
PostGIS函数:
ST_GeometryN(a_geom geometry, dimension int)
https://stackoverflow.com/questions/8423593
相似问题