#4133 closed defect (worksforme)
OSRIsSame needs some touching up
Reported by: | hobu | Owned by: | warmerdam |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | default | Version: | unspecified |
Severity: | normal | Keywords: | |
Cc: | hobu, antonio |
Description
WKT that originates from OSR might not be equivalent in OSRIsSame's eyes
OSRSpatialReference ref; ref.setFromUserInput("+proj=utm +zone=15 +datum=WGS84 +units=m +no_defs "); const char* wkt = ref.exportToWkt(); OSRSpatialReference ref2; ref2.setFromUserInput(wkt); // Returns FALSE int equal = OSRIsSame(ref1, ref2);
}}}
Change History (4)
comment:1 by , 12 years ago
comment:3 by , 12 years ago
Milestone: | 1.9.0 |
---|---|
Resolution: | → worksforme |
Status: | new → closed |
comment:4 by , 12 years ago
Cc: | added |
---|
Note:
See TracTickets
for help on using tickets.
Weird ! Works for me with trunk. See :
What's the output of the above for you ?