lambert.h
上传用户:oybseng
上传日期:2015-04-27
资源大小:7831k
文件大小:9k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef LAMBERT_H
  2.   #define LAMBERT_H
  3. /***************************************************************************/
  4. /* RSC IDENTIFIER: LAMBERT
  5.  *
  6.  * ABSTRACT
  7.  *
  8.  *    This component provides conversions between Geodetic coordinates 
  9.  *    (latitude and longitude in radians) and Lambert Conformal Conic
  10.  *    projection coordinates (easting and northing in meters) defined 
  11.  *    by two standard parallels.  When both standard parallel parameters
  12.  *    are set to the same latitude value, the result is a Lambert 
  13.  *    Conformal Conic projection with one standard parallel at the 
  14.  *    specified latitude.
  15.  *
  16.  * ERROR HANDLING
  17.  *
  18.  *    This component checks parameters for valid values.  If an invalid value
  19.  *    is found the error code is combined with the current error code using 
  20.  *    the bitwise or.  This combining allows multiple error codes to be
  21.  *    returned. The possible error codes are:
  22.  *
  23.  *       LAMBERT_NO_ERROR           : No errors occurred in function
  24.  *       LAMBERT_LAT_ERROR          : Latitude outside of valid range
  25.  *                                     (-90 to 90 degrees)
  26.  *       LAMBERT_LON_ERROR          : Longitude outside of valid range
  27.  *                                     (-180 to 360 degrees)
  28.  *       LAMBERT_EASTING_ERROR      : Easting outside of valid range
  29.  *                                     (depends on ellipsoid and projection
  30.  *                                     parameters)
  31.  *       LAMBERT_NORTHING_ERROR     : Northing outside of valid range
  32.  *                                     (depends on ellipsoid and projection
  33.  *                                     parameters)
  34.  *       LAMBERT_FIRST_STDP_ERROR   : First standard parallel outside of valid
  35.  *                                     range (-90 to 90 degrees)
  36.  *       LAMBERT_SECOND_STDP_ERROR  : Second standard parallel outside of valid
  37.  *                                     range (-90 to 90 degrees)
  38.  *       LAMBERT_ORIGIN_LAT_ERROR   : Origin latitude outside of valid range
  39.  *                                     (-90 to 90 degrees)
  40.  *       LAMBERT_CENT_MER_ERROR     : Central meridian outside of valid range
  41.  *                                     (-180 to 360 degrees)
  42.  *       LAMBERT_A_ERROR            : Semi-major axis less than or equal to zero
  43.  *       LAMBERT_INV_F_ERROR        : Inverse flattening outside of valid range
  44.  *                    (250 to 350)
  45.  *       LAMBERT_HEMISPHERE_ERROR   : Standard parallels cannot be opposite latitudes
  46.  *       LAMBERT_FIRST_SECOND_ERROR : The 1st & 2nd standard parallels cannot
  47.  *                                     both be 0
  48.  *
  49.  *
  50.  * REUSE NOTES
  51.  *
  52.  *    LAMBERT is intended for reuse by any application that performs a Lambert
  53.  *    Conformal Conic projection or its inverse.
  54.  *    
  55.  * REFERENCES
  56.  *
  57.  *    Further information on LAMBERT can be found in the Reuse Manual.
  58.  *
  59.  *    LAMBERT originated from:
  60.  *                      U.S. Army Topographic Engineering Center
  61.  *                      Geospatial Information Division
  62.  *                      7701 Telegraph Road
  63.  *                      Alexandria, VA  22310-3864
  64.  *
  65.  * LICENSES
  66.  *
  67.  *    None apply to this component.
  68.  *
  69.  * RESTRICTIONS
  70.  *
  71.  *    LAMBERT has no restrictions.
  72.  *
  73.  * ENVIRONMENT
  74.  *
  75.  *    LAMBERT was tested and certified in the following environments:
  76.  *
  77.  *    1. Solaris 2.5 with GCC, version 2.8.1
  78.  *    2. Windows 95 with MS Visual C++, version 6
  79.  *
  80.  * MODIFICATIONS
  81.  *
  82.  *    Date              Description
  83.  *    ----              -----------
  84.  *    10-02-97          Original Code
  85.  *    08-15-99          Re-engineered Code
  86.  *
  87.  */
  88. /***************************************************************************/
  89. /*
  90.  *                              DEFINES
  91.  */
  92.   #define LAMBERT_NO_ERROR           0x0000
  93.   #define LAMBERT_LAT_ERROR          0x0001
  94.   #define LAMBERT_LON_ERROR          0x0002
  95.   #define LAMBERT_EASTING_ERROR      0x0004
  96.   #define LAMBERT_NORTHING_ERROR     0x0008
  97.   #define LAMBERT_FIRST_STDP_ERROR   0x0010
  98.   #define LAMBERT_SECOND_STDP_ERROR  0x0020
  99.   #define LAMBERT_ORIGIN_LAT_ERROR   0x0040
  100.   #define LAMBERT_CENT_MER_ERROR     0x0080
  101.   #define LAMBERT_A_ERROR            0x0100
  102.   #define LAMBERT_INV_F_ERROR        0x0200
  103.   #define LAMBERT_HEMISPHERE_ERROR   0x0400
  104.   #define LAMBERT_FIRST_SECOND_ERROR 0x0800
  105. /***************************************************************************/
  106. /*
  107.  *                              FUNCTION PROTOTYPES
  108.  *                                for LAMBERT.C
  109.  */
  110. /* ensure proper linkage to c++ programs */
  111.   #ifdef __cplusplus
  112. extern "C" {
  113.   #endif
  114.   long Set_Lambert_Parameters(double a,
  115.                               double f,
  116.                               double Origin_Latitude,
  117.                               double Central_Meridian,
  118.                               double Std_Parallel_1,
  119.                               double Std_Parallel_2,
  120.                               double False_Easting,
  121.                               double False_Northing);
  122. /*
  123.  * The function Set_Lambert_Parameters receives the ellipsoid parameters and
  124.  * Lambert Conformal Conic projection parameters as inputs, and sets the
  125.  * corresponding state variables.  If any errors occur, the error code(s)
  126.  * are returned by the function, otherwise LAMBERT_NO_ERROR is returned.
  127.  *
  128.  *   a                   : Semi-major axis of ellipsoid, in meters   (input)
  129.  *   f                   : Flattening of ellipsoid           (input)
  130.  *   Origin_Latitude     : Latitude of origin in radians             (input)
  131.  *   Central_Meridian    : Longitude of origin in radians            (input)
  132.  *   Std_Parallel_1      : First standard parallel                   (input)
  133.  *   Std_Parallel_2      : Second standard parallel                  (input)
  134.  *   False_Easting       : False easting in meters                   (input)
  135.  *   False_Northing      : False northing in meters                  (input)
  136.  *
  137.  *   Note that when the two standard parallel parameters are both set to the 
  138.  *   same latitude value, the result is a Lambert Conformal Conic projection 
  139.  *   with one standard parallel at the specified latitude.
  140.  */
  141.   void Get_Lambert_Parameters(double *a,
  142.                               double *f,
  143.                               double *Origin_Latitude,
  144.                               double *Central_Meridian,
  145.                               double *Std_Parallel_1,
  146.                               double *Std_Parallel_2,
  147.                               double *False_Easting,
  148.                               double *False_Northing);
  149. /*                         
  150.  * The function Get_Lambert_Parameters returns the current ellipsoid
  151.  * parameters and Lambert Conformal Conic projection parameters.
  152.  *
  153.  *   a                   : Semi-major axis of ellipsoid, in meters   (output)
  154.  *   f                   : Flattening of ellipsoid          (output)
  155.  *   Origin_Latitude     : Latitude of origin, in radians            (output)
  156.  *   Central_Meridian    : Longitude of origin, in radians           (output)
  157.  *   Std_Parallel_1      : First standard parallel                   (output)
  158.  *   Std_Parallel_2      : Second standard parallel                  (output)
  159.  *   False_Easting       : False easting, in meters                  (output)
  160.  *   False_Northing      : False northing, in meters                 (output) 
  161.  */
  162.   long Convert_Geodetic_To_Lambert (double Latitude,
  163.                                     double Longitude,
  164.                                     double *Easting,
  165.                                     double *Northing);
  166. /*
  167.  * The function Convert_Geodetic_To_Lambert converts Geodetic (latitude and
  168.  * longitude) coordinates to Lambert Conformal Conic projection (easting
  169.  * and northing) coordinates, according to the current ellipsoid and
  170.  * Lambert Conformal Conic projection parameters.  If any errors occur, the
  171.  * error code(s) are returned by the function, otherwise LAMBERT_NO_ERROR is
  172.  * returned.
  173.  *
  174.  *    Latitude         : Latitude in radians                         (input)
  175.  *    Longitude        : Longitude in radians                        (input)
  176.  *    Easting          : Easting (X) in meters                       (output)
  177.  *    Northing         : Northing (Y) in meters                      (output)
  178.  */
  179.   long Convert_Lambert_To_Geodetic (double Easting,
  180.                                     double Northing,
  181.                                     double *Latitude,
  182.                                     double *Longitude);
  183. /*
  184.  * The function Convert_Lambert_To_Geodetic converts Lambert Conformal
  185.  * Conic projection (easting and northing) coordinates to Geodetic
  186.  * (latitude and longitude) coordinates, according to the current ellipsoid
  187.  * and Lambert Conformal Conic projection parameters.  If any errors occur,
  188.  * the error code(s) are returned by the function, otherwise LAMBERT_NO_ERROR
  189.  * is returned.
  190.  *
  191.  *    Easting          : Easting (X) in meters                       (input)
  192.  *    Northing         : Northing (Y) in meters                      (input)
  193.  *    Latitude         : Latitude in radians                         (output)
  194.  *    Longitude        : Longitude in radians                        (output)
  195.  */
  196.   #ifdef __cplusplus
  197. }
  198.   #endif
  199. #endif /* LAMBERT_H */