pe_geoxyzcs_status |
Returns the status of an object
unsigned char pe_geoxyzcs_status (PE_GEOXYZCS *p);
p |
The pointer to an object |
This function returns the status of a geocentric coordinate system object. A geocentric coordinate system is a 3D Cartesian system. The X axis lies in the plane of the equator and points in the direction of the prime meridian (usually Greenwich). The Y axis is 90 degrees away in the plane of the equator, and the Z axis points north in a right-handed system.
Note: Currently, geocentric coordinate systems are not supported by the ArcSDE or ArcGIS software.
The status values are:
PE_STATUS_NONE 0x00 /* Not set */ PE_STATUS_NEW 0x01 /* Created via pe_*_new() function */ PE_STATUS_STRING 0x02 /* Created via pe_*_from_string() function */ PE_STATUS_CODE 0x04 /* Created via pe_factory_*() function */ PE_STATUS_USER 0x08 /* Created via PEOBJEDITHOME */ PE_STATUS_DEPRECATED 0x10 /* Deprecated (invalid) factory code */ PE_STATUS_DISCONTINUED 0x20 /* Discontinued (no replacement) factory code */
status = pe_geoxyzcs_status(xyz1);