pe_vdatum_to_string

Creates a string representation of a vertical datum.

Usage syntax

void pe_vdatum_to_string (PE_VDATUM vdatum, char buffer[PE_BUFFER_MAX]);

Parameters
vdatum The vertical datum object
buffer The string representation of the object
Description

Creates a string representation of a vertical datum object in the format:
VDATUM["National_Geodetic_Vertical_Datum_1929"]

Returns

None

Examples

char w[PE_BUFFER_MAX];
PE_VDATUM ngvd29 = pe_factory_vdatum(PE_VERTD_NGVD_1929);
pe_vdatum_to_string(ngvd29, w);