Django

Code

Show
Ignore:
Timestamp:
07/21/08 20:10:59 (6 months ago)
Author:
jbronn
Message:

gis: gdal: Features may now be fetched from OGR layers that do not support random access reading, but no more negative indexes are allowed; cleaned up OGRGeomType; moved test vector data into its own directory.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/gis/django/contrib/gis/gdal/prototypes/ds.py

    r6914 r8034  
    3838get_next_feature = voidptr_output(lgdal.OGR_L_GetNextFeature, [c_void_p]) 
    3939reset_reading = void_output(lgdal.OGR_L_ResetReading, [c_void_p], errcheck=False) 
     40test_capability = int_output(lgdal.OGR_L_TestCapability, [c_void_p, c_char_p]) 
    4041 
    4142### Feature Definition Routines ###