Opened 11 years ago
Closed 11 years ago
#2415 closed defect (fixed)
ST_Multi does not support curve geometries
Reported by: | strk | Owned by: | strk |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 2.0.4 |
Component: | postgis | Version: | 1.5.X |
Keywords: | Cc: |
Description
When passed to ST_Multi, COMPOUNDCURVE and CIRCULARSTRING should become MULTICURVE; CURVEPOLYGON should become MULTISURFACE.
Change History (3)
comment:1 by , 11 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 11 years ago
Milestone: | PostGIS 2.1.0 → PostGIS 1.5.9 |
---|---|
Version: | 2.0.x → 1.5.X |
This bug affects even 1.5…
comment:3 by , 11 years ago
Milestone: | PostGIS 1.5.9 → PostGIS 2.0.4 |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Actually CIRCULARSTRING is already supported, only COMPOUNDCURVE and CURVEPOLYGON are not. The problem is with use of lwtype_is_collection, which considers curVEPOLYGON and COMPOUNDCURVE as collections. Fixing that function isn't something for 2.1.0, but changing ST_Multi to avoid it could get into it, IMHO.