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

GDI/图象编程

开发平台:

Visual C++

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