pe_vertcs_p |
Tests whether an object is of type vertical vertical coordinate system
int pe_vertcs_p (struct pe_struct_t *p);
p | The pointer to an object. |
This function tests whether the argument is an object of type vertical coordinate system.
Returns 1 if the argument points to an object of type vertical coordinate system; otherwise, 0
int test;
PE_VERTCS ngvd29;
ngvd29 = pe_factory_vertcs(PE_VCS_NGVD_1929);
test = pe_vertcs_p(ngvd29);
pe_vertcs_del(ngvd29);