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

GDI/图象编程

开发平台:

Visual C++

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