Changeset 844 for trunk/python/liblas/core.py
- Timestamp:
- 08/18/08 23:45:53 (5 months ago)
- Files:
-
- 1 modified
-
trunk/python/liblas/core.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/liblas/core.py
r813 r844 105 105 # stolen from Shapely 106 106 # http://trac.gispython.org/projects/PCL/browser/Shapely/trunk/shapely/geos.py 107 lib_name = 'liblas 0.9.6.dll'107 lib_name = 'liblas.dll' 108 108 try: 109 109 local_dlls = os.path.abspath(os.__file__ + "../../../DLLs") … … 318 318 las.LASHeader_GetReserved.errcheck = check_value 319 319 320 las.LASHeader_GetCreationDOY.restype = ctypes.c_ short320 las.LASHeader_GetCreationDOY.restype = ctypes.c_ushort 321 321 las.LASHeader_GetCreationDOY.argtypes = [ctypes.c_void_p] 322 322 las.LASHeader_GetCreationDOY.errcheck = check_value 323 323 las.LASHeader_SetCreationDOY.restype = ctypes.c_int 324 las.LASHeader_SetCreationDOY.argtypes = [ctypes.c_void_p, ctypes.c_ short]324 las.LASHeader_SetCreationDOY.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 325 325 las.LASHeader_SetCreationDOY.errcheck = check_return 326 326 327 las.LASHeader_GetCreationYear.restype = ctypes.c_ short327 las.LASHeader_GetCreationYear.restype = ctypes.c_ushort 328 328 las.LASHeader_GetCreationYear.argtypes = [ctypes.c_void_p] 329 329 las.LASHeader_GetCreationYear.errcheck = check_value 330 330 las.LASHeader_SetCreationYear.restype = ctypes.c_int 331 las.LASHeader_SetCreationYear.argtypes = [ctypes.c_void_p, ctypes.c_ short]331 las.LASHeader_SetCreationYear.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 332 332 las.LASHeader_SetCreationYear.errcheck = check_return 333 333
