pe_factory_vertcs_codelist |
Creates a list of predefined vertical coordinate system codes.
int *pe_factory_vertcs_codelist (int *num_codes);
num_codes | A pointer to the integer, which upon return will contain the number of predefined vertical coordinate system object codes in the array |
Creates a list of the predefined vertical coordinate system codes. The list will not include any user-defined vertical coordinate systems. You can use pe_predefined_vertcs to return a table of vertical coordinate systems that includes user-defined vertical coordinate systems.
On success, an array of vertical coordinate system codes. On failure, a null pointer.
int *list;
int number, i;
list = pe_factory_vertcs_codelist(&number);
printf("Total number of predefined vertical coordsys: %6d\n",number);
for (i=0; i<number; i++)
{
printf("%6d\n",list[i]);
}
pe_factory_codelist_del(list);