/*
 * STRUCT: SRM_PS_2D_PARAMETERS
 *
 *   The parameters needed to define the Polar Stereographic (PS) 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;
/*
* Specification of Projection Basis (origin)
*/
SE_PS_POLE_ENUM pole; (notes)
SE_FLOAT64 geodetic_longitude; (notes)
SE_FLOAT64 central_scale_factor; (notes)
/*
* Origin Displacement of Rectangular Coordinates
*/
SE_FLOAT64 x_offset; (notes)
SE_FLOAT64 y_offset; (notes)
} SRM_PS_2D_PARAMETERS;


Field Notes

pole

 North or South

geodetic_longitude

 degrees; specifying the meridian of the positive Y axis

central_scale_factor

 unitless; normally close to (<=) 1.0

x_offset

 origin relative displacement in x

y_offset

 origin relative displacement in y
Prev: SRM_PS_2D_COORD. Next: SRM_PS_3D_COORD. Up:Index