Opened 16 years ago

Last modified 16 years ago

#7705 closed

GDAL datasource bug — at Version 2

Reported by: denis@… 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 jbronn)

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 (2)

comment:1 by Karen Tracey <kmtracey@…>, 16 years ago

Version: SVNgis

comment:2 by jbronn, 16 years ago

Component: UncategorizedGIS
Description: modified (diff)
Keywords: gdal datasource added
Owner: changed from nobody to jbronn
Note: See TracTickets for help on using tickets.
Back to Top