Opened 14 years ago
Closed 13 years ago
#668 closed defect (fixed)
Bounding box calculation for straight CircString fails
Reported by: | pramsey | Owned by: | mleslie |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 2.0.0 |
Component: | postgis | Version: | 1.5.X |
Keywords: | boxes | Cc: |
Description
When a circular string closes on itself to form a circle, the bounding box calculation does not return the right result.
select 'CIRCULARSTRING(10 2,12 2,14 2)'::geometry && 'POLYGON((0 0,0 20,20 20,20 0,0 0))'::geometry; ?column? ---------- f (1 row)
Change History (5)
comment:1 by , 14 years ago
comment:2 by , 13 years ago
Keywords: | boxes added |
---|---|
Summary: | Bounding box calculation for closed CircString fails → Bounding box calculation for straight CircString fails |
comment:3 by , 13 years ago
Milestone: | PostGIS 1.5.3 → PostGIS 2.0.0 |
---|
comment:5 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
I used the wrong words. The problem isn't closed circular strings, it's ones that aren't actually curves, that describe straight lines, so the three components are co-linear. The example is still correct.