Opened 16 years ago
Closed 16 years ago
#7705 closed (fixed)
GDAL datasource bug
Reported by: | Owned by: | jbronn | |
---|---|---|---|
Component: | GIS | Version: | gis |
Severity: | Keywords: | gdal datasource | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
When I did this:
from django.contrib.gis.gdal import DataSource ds = DataSource(fn) for layer in ds: for item in layer: print item.geom, item.fields
I got that:
File "../basescript.py", line 24, in importInteractiveLayer print item.geom, item.fields File "/usr/lib/python2.5/site-packages/django/contrib/gis/gdal/feature.py", line 87, in fields for i in xrange(self.num_fields)] NameError: global name 'get_field_name' is not defined
I'm using gdal 1.5.1 and geodjango revision 7870
Change History (4)
comment:1 by , 16 years ago
Version: | SVN → gis |
---|
comment:2 by , 16 years ago
Component: | Uncategorized → GIS |
---|---|
Description: | modified (diff) |
Keywords: | gdal datasource added |
Owner: | changed from | to
comment:3 by , 16 years ago
Status: | new → assigned |
---|
comment:4 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Yup, this is a bug caused by forgetting to import a ctypes prototype function. This will be fixed soon.