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

GDI/图象编程

开发平台:

Visual C++

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