This repository was archived by the owner on Jan 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrs.jl
53 lines (40 loc) · 1.6 KB
/
srs.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Spatial Reference System
function create(::Type{LASSRS})
ccall((:LASSRS_Create,liblas),LASSRS,())
end
function gtif(hSRS::LASSRS)
ccall((:LASSRS_GetGTIF,liblas),Ptr{Cvoid},(LASSRS,),hSRS)
end
function gtif!(hSRS::LASSRS,pgtiff::Ptr{Cvoid},ptiff::Ptr{Cvoid})
ccall((:LASSRS_SetGTIF,liblas),LASError,(LASSRS,Ptr{Cvoid},Ptr{Cvoid}),hSRS,pgtiff,ptiff)
end
function wkt(hSRS::LASSRS)
ccall((:LASSRS_GetWKT,liblas),Ptr{UInt8},(LASSRS,),hSRS)
end
function wkt_compound_ok(hSRS::LASSRS)
ccall((:LASSRS_GetWKT_CompoundOK,liblas),Ptr{UInt8},(LASSRS,),hSRS)
end
function wkt!(hSRS::LASSRS,value::Ptr{UInt8})
ccall((:LASSRS_SetWKT,liblas),LASError,(LASSRS,Ptr{UInt8}),hSRS,value)
end
function from_userinput!(hSRS::LASSRS,value::Ptr{UInt8})
ccall((:LASSRS_SetFromUserInput,liblas),LASError,(LASSRS,Ptr{UInt8}),hSRS,value)
end
function proj4(hSRS::LASSRS)
ccall((:LASSRS_GetProj4,liblas),Ptr{UInt8},(LASSRS,),hSRS)
end
function proj4!(hSRS::LASSRS,value::Ptr{UInt8})
ccall((:LASSRS_SetProj4,liblas),LASError,(LASSRS,Ptr{UInt8}),hSRS,value)
end
function vertical_cs!(hSRS::LASSRS,verticalCSType::Cint,citation::Ptr{UInt8},verticalDatum::Cint,verticalUnits::Cint)
ccall((:LASSRS_SetVerticalCS,liblas),LASError,(LASSRS,Cint,Ptr{UInt8},Cint,Cint),hSRS,verticalCSType,citation,verticalDatum,verticalUnits)
end
function destroy(hSRS::LASSRS)
ccall((:LASSRS_Destroy,liblas),Cvoid,(LASSRS,),hSRS)
end
function vlr(hSRS::LASSRS,i::UInt32)
ccall((:LASSRS_GetVLR,liblas),LASVLR,(LASSRS,UInt32),hSRS,i)
end
function vlrcount(hSRS::LASSRS)
ccall((:LASSRS_GetVLRCount,liblas),UInt32,(LASSRS,),hSRS)
end