/django/contrib/gis/gdal/prototypes/ds.py

https://code.google.com/p/mango-py/ · Python · 71 lines · 53 code · 7 blank · 11 comment · 0 complexity · 40a7ec48f88f9281af24788bb1c24695 MD5 · raw file

  1. """
  2. This module houses the ctypes function prototypes for OGR DataSource
  3. related data structures. OGR_Dr_*, OGR_DS_*, OGR_L_*, OGR_F_*,
  4. OGR_Fld_* routines are relevant here.
  5. """
  6. from ctypes import c_char_p, c_double, c_int, c_long, c_void_p, POINTER
  7. from django.contrib.gis.gdal.envelope import OGREnvelope
  8. from django.contrib.gis.gdal.libgdal import lgdal
  9. from django.contrib.gis.gdal.prototypes.generation import \
  10. const_string_output, double_output, geom_output, int_output, \
  11. srs_output, void_output, voidptr_output
  12. c_int_p = POINTER(c_int) # shortcut type
  13. ### Driver Routines ###
  14. register_all = void_output(lgdal.OGRRegisterAll, [], errcheck=False)
  15. cleanup_all = void_output(lgdal.OGRCleanupAll, [], errcheck=False)
  16. get_driver = voidptr_output(lgdal.OGRGetDriver, [c_int])
  17. get_driver_by_name = voidptr_output(lgdal.OGRGetDriverByName, [c_char_p])
  18. get_driver_count = int_output(lgdal.OGRGetDriverCount, [])
  19. get_driver_name = const_string_output(lgdal.OGR_Dr_GetName, [c_void_p])
  20. ### DataSource ###
  21. open_ds = voidptr_output(lgdal.OGROpen, [c_char_p, c_int, POINTER(c_void_p)])
  22. destroy_ds = void_output(lgdal.OGR_DS_Destroy, [c_void_p], errcheck=False)
  23. release_ds = void_output(lgdal.OGRReleaseDataSource, [c_void_p])
  24. get_ds_name = const_string_output(lgdal.OGR_DS_GetName, [c_void_p])
  25. get_layer = voidptr_output(lgdal.OGR_DS_GetLayer, [c_void_p, c_int])
  26. get_layer_by_name = voidptr_output(lgdal.OGR_DS_GetLayerByName, [c_void_p, c_char_p])
  27. get_layer_count = int_output(lgdal.OGR_DS_GetLayerCount, [c_void_p])
  28. ### Layer Routines ###
  29. get_extent = void_output(lgdal.OGR_L_GetExtent, [c_void_p, POINTER(OGREnvelope), c_int])
  30. get_feature = voidptr_output(lgdal.OGR_L_GetFeature, [c_void_p, c_long])
  31. get_feature_count = int_output(lgdal.OGR_L_GetFeatureCount, [c_void_p, c_int])
  32. get_layer_defn = voidptr_output(lgdal.OGR_L_GetLayerDefn, [c_void_p])
  33. get_layer_srs = srs_output(lgdal.OGR_L_GetSpatialRef, [c_void_p])
  34. get_next_feature = voidptr_output(lgdal.OGR_L_GetNextFeature, [c_void_p])
  35. reset_reading = void_output(lgdal.OGR_L_ResetReading, [c_void_p], errcheck=False)
  36. test_capability = int_output(lgdal.OGR_L_TestCapability, [c_void_p, c_char_p])
  37. get_spatial_filter = geom_output(lgdal.OGR_L_GetSpatialFilter, [c_void_p])
  38. set_spatial_filter = void_output(lgdal.OGR_L_SetSpatialFilter, [c_void_p, c_void_p], errcheck=False)
  39. set_spatial_filter_rect = void_output(lgdal.OGR_L_SetSpatialFilterRect, [c_void_p, c_double, c_double, c_double, c_double], errcheck=False)
  40. ### Feature Definition Routines ###
  41. get_fd_geom_type = int_output(lgdal.OGR_FD_GetGeomType, [c_void_p])
  42. get_fd_name = const_string_output(lgdal.OGR_FD_GetName, [c_void_p])
  43. get_feat_name = const_string_output(lgdal.OGR_FD_GetName, [c_void_p])
  44. get_field_count = int_output(lgdal.OGR_FD_GetFieldCount, [c_void_p])
  45. get_field_defn = voidptr_output(lgdal.OGR_FD_GetFieldDefn, [c_void_p, c_int])
  46. ### Feature Routines ###
  47. clone_feature = voidptr_output(lgdal.OGR_F_Clone, [c_void_p])
  48. destroy_feature = void_output(lgdal.OGR_F_Destroy, [c_void_p], errcheck=False)
  49. feature_equal = int_output(lgdal.OGR_F_Equal, [c_void_p, c_void_p])
  50. get_feat_geom_ref = geom_output(lgdal.OGR_F_GetGeometryRef, [c_void_p])
  51. get_feat_field_count = int_output(lgdal.OGR_F_GetFieldCount, [c_void_p])
  52. get_feat_field_defn = voidptr_output(lgdal.OGR_F_GetFieldDefnRef, [c_void_p, c_int])
  53. get_fid = int_output(lgdal.OGR_F_GetFID, [c_void_p])
  54. get_field_as_datetime = int_output(lgdal.OGR_F_GetFieldAsDateTime, [c_void_p, c_int, c_int_p, c_int_p, c_int_p, c_int_p, c_int_p, c_int_p])
  55. get_field_as_double = double_output(lgdal.OGR_F_GetFieldAsDouble, [c_void_p, c_int])
  56. get_field_as_integer = int_output(lgdal.OGR_F_GetFieldAsInteger, [c_void_p, c_int])
  57. get_field_as_string = const_string_output(lgdal.OGR_F_GetFieldAsString, [c_void_p, c_int])
  58. get_field_index = int_output(lgdal.OGR_F_GetFieldIndex, [c_void_p, c_char_p])
  59. ### Field Routines ###
  60. get_field_name = const_string_output(lgdal.OGR_Fld_GetNameRef, [c_void_p])
  61. get_field_precision = int_output(lgdal.OGR_Fld_GetPrecision, [c_void_p])
  62. get_field_type = int_output(lgdal.OGR_Fld_GetType, [c_void_p])
  63. get_field_type_name = const_string_output(lgdal.OGR_GetFieldTypeName, [c_int])
  64. get_field_width = int_output(lgdal.OGR_Fld_GetWidth, [c_void_p])