pe_vertcs_parameters |
Retrieves the parameters of a vertical coordinate system
void pe_vertcs_parameters(PE_VERTCS vertcs, PE_PARAMETER
parameters[PE_PARM_MAX]);
vertcs | A valid vertical coordinate system object |
parameters | The array of parameters for the vertical coordinate system object |
Retrieves the array of parameters of a vertical coordinate system. A vertical coordinate system has two parameters: Vertical_Shift and Direction. The Direction determines whether the z values are positive up (heights) or down (depths).
None
PE_PARAMETER par[PE_PARM_MAX];
PE_VERTCS vcs;
vcs = pe_factory_vertcs(PE_VCS_DANGER_1950);
pe_vertcs_parameters(vcs, par);
pe_parameter_del(par);
pe_vertcs_del(vcs);