I have a polygon data table in PostgreSQL/PostGIS. Now I need to convert this Polygon data into its corresponding line segments. Can anybody tell me how to convert it using PostGIS queries.
Thanks in Advance
|
I have a polygon data table in PostgreSQL/PostGIS. Now I need to convert this Polygon data into its corresponding line segments. Can anybody tell me how to convert it using PostGIS queries. Thanks in Advance |
||||
|
|
|
Generally, converting polygon to line may be not straightforward because there is no one-to-one mapping and various elements of polygon map to different linestring (exterior ring, interior rings, etc.). Considering that, you will need to split each of those separately following possible approach like this:
depending on what polygon data are stored in There is also a generic approach to the problem explained in Exploding a linestring or polygon into individual vectors in PostGIS |
|||
|
|