pe_vertcs_p

Tests whether an object is of type vertical vertical coordinate system

Usage syntax

int pe_vertcs_p (struct pe_struct_t *p);
 

Parameters
p The pointer to an object.
Description

This function tests whether the argument is an object of type vertical coordinate system.

Returns

Returns 1 if the argument points to an object of type vertical coordinate system; otherwise, 0

Examples

int test;
PE_VERTCS ngvd29;
ngvd29 = pe_factory_vertcs(PE_VCS_NGVD_1929);
test = pe_vertcs_p(ngvd29);
pe_vertcs_del(ngvd29);