/*
 * STRUCT: SRM_UTM_2D_PARAMETERS
 *
 *   The parameters needed to define the Universal Transverse Mercator (UTM)
 *   2D Spatial Reference Frame (SRF).  See the Spatial Reference Model for
 *   details.
 */
typedef struct
{
/*
* Specification of Object Reference Model (ORM)
*/
SE_HORIZONTAL_DATUM_ENUM horizontal_datum;
/*
* Origin Displacement of Coordinate System
*/
SE_FLOAT64 x_offset; (notes)
SE_FLOAT64 y_offset; (notes)
SE_PINT8 zone; (notes)
} SRM_UTM_2D_PARAMETERS;


Field Notes

x_offset

 origin relative displacement in X

y_offset

 origin relative displacement in Y

zone

 between 1 and 60, inclusive
Prev: SRM_UTM_2D_COORD. Next: SRM_UTM_3D_COORD. Up:Index