Opened 18 years ago
Closed 18 years ago
#5440 closed (fixed)
GEOSGeometry: Add WKB support
| Reported by: | Robert Coup | Owned by: | jbronn |
|---|---|---|---|
| Component: | GIS | Version: | gis |
| Severity: | Keywords: | sprint | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
Attached is a patch that adds WKB support to the GEOSGeometry object, which we can use for more efficient conversions/access.
Create a GEOSGeometry by passing the binary data as a buffer type (via buffer()):
# wkb = buffer('\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?')
# geom = GEOSGeometry(wkb)
# geom.wkt
'POINT (0.0000000000000000 1.0000000000000000)'
Get the WKB out:
# geom = Point(0, 1) # geom.wkb <read-only buffer for 0x2b10ff1c2030, size -1, offset 0 at 0x2b10ff1a6d18> # str(geom.wkb) '\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?'
In addition to tests for WKB, I've added a number of extra tests around geometry creation from formats other than WKT.
Attachments (1)
Change History (5)
by , 18 years ago
| Attachment: | geos_wkb_support.patch added |
|---|
comment:1 by , 18 years ago
| Version: | SVN → gis |
|---|
comment:2 by , 18 years ago
| Owner: | changed from to |
|---|
comment:3 by , 18 years ago
| Status: | new → assigned |
|---|
comment:4 by , 18 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [6314]) gis: Fixed #5440 with patches from rcoup; cleaned up notice handler in libgeos.