Changeset 656:3540f7d44d9f


Ignore:
Timestamp:
05/17/08 00:44:23 (2 years ago)
Author:
Howard Butler <hobu.inc@…>
Branch:
default
Convert:
svn:1766ff46-f334-0410-ab20-d63176f87757/trunk@723
Message:

add some core VLR stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/liblas/core.py

    r655 r656  
    386386las.LASHeader_SetProj4.errcheck = check_return 
    387387 
     388las.LASHeader_GetVLR.argtypes = [ctypes.c_void_p, ctypes.c_int] 
     389las.LASHeader_GetVLR.errcheck = check_void 
     390las.LASHeader_GetVLR.restype = ctypes.c_void_p 
     391 
     392las.LASHeader_DeleteVLR.argtypes = [ctypes.c_void_p, ctypes.c_int] 
     393las.LASHeader_DeleteVLR.errcheck = check_return 
     394 
     395las.LASHeader_AddVLR.argtypes = [ctypes.c_void_p, ctypes.c_void_p] 
     396las.LASHeader_AddVLR.errcheck = check_return 
    388397 
    389398las.LASWriter_Create.restype = ctypes.c_void_p 
     
    426435las.LASHeader_SetGUID.restype = ctypes.c_int 
    427436 
     437las.LASVLR_Create.errcheck = check_void 
     438las.LASVLR_Create.restype = ctypes.c_void_p 
     439 
     440las.LASVLR_Destroy.argtypes = [ctypes.c_void_p] 
     441las.LASVLR_Destroy.errcheck = check_void_done 
     442 
     443las.LASVLR_GetUserId.argtypes = [ctypes.c_void_p] 
     444las.LASVLR_GetUserId.errcheck = check_value_free 
     445las.LASVLR_SetUserId.argtypes = [ctypes.c_void_p, ctypes.c_char_p] 
     446las.LASVLR_SetUserId.errcheck = check_return 
     447las.LASVLR_SetUserId.restype = ctypes.c_int 
     448 
     449las.LASVLR_GetDescription.argtypes = [ctypes.c_void_p] 
     450las.LASVLR_GetDescription.errcheck = check_value_free 
     451las.LASVLR_SetDescription.argtypes = [ctypes.c_void_p, ctypes.c_char_p] 
     452las.LASVLR_SetDescription.errcheck = check_return 
     453las.LASVLR_SetDescription.restype = ctypes.c_int 
     454 
     455las.LASVLR_GetRecordLength.argtypes = [ctypes.c_void_p] 
     456las.LASVLR_GetRecordLength.errcheck = check_value 
     457las.LASVLR_GetRecordLength.restype = ctypes.c_ushort 
     458las.LASVLR_SetRecordLength.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 
     459las.LASVLR_SetRecordLength.errcheck = check_return 
     460las.LASVLR_SetRecordLength.restype = ctypes.c_int 
     461 
     462las.LASVLR_GetRecordId.argtypes = [ctypes.c_void_p] 
     463las.LASVLR_GetRecordId.errcheck = check_value 
     464las.LASVLR_GetRecordId.restype = ctypes.c_ushort 
     465las.LASVLR_SetRecordId.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 
     466las.LASVLR_SetRecordId.errcheck = check_return 
     467las.LASVLR_SetRecordId.restype = ctypes.c_int 
     468 
     469las.LASVLR_GetReserved.argtypes = [ctypes.c_void_p] 
     470las.LASVLR_GetReserved.errcheck = check_value 
     471las.LASVLR_GetReserved.restype = ctypes.c_ushort 
     472las.LASVLR_SetReserved.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 
     473las.LASVLR_SetReserved.errcheck = check_return 
     474las.LASVLR_SetReserved.restype = ctypes.c_int 
     475 
Note: See TracChangeset for help on using the changeset viewer.