/*
 * STRUCT: SRM_LCC_2D_PARAMETERS
 *
 *   The parameters needed to define the Lambert Conformal Conic (LCC) 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;
/*
* Standard Parallels
*/
SE_FLOAT64 north_parallel_geodetic_latitude; (notes)
SE_FLOAT64 south_parallel_geodetic_latitude; (notes)
/*
* Origin of Rectangular Coordinates
*/
SE_FLOAT64 geodetic_latitude; (notes)
SE_FLOAT64 geodetic_longitude; (notes)
/*
* Origin Displacement of Coordinate System
*/
SE_FLOAT64 x_offset; (notes)
SE_FLOAT64 y_offset; (notes)
} SRM_LCC_2D_PARAMETERS;


Field Notes

north_parallel_geodetic_latitude

 in degrees

south_parallel_geodetic_latitude

 in degrees

geodetic_latitude

 in degrees; specifying the parallel of the X axis;
 positive eastwards

geodetic_longitude

 in degrees, specifying the meridian of the positive y axis

x_offset

 origin relative displacement in X

y_offset

 origin relative displacement in Y
Prev: SRM_LCC_2D_COORD. Next: SRM_LCC_3D_COORD. Up:Index