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

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef EQDCYL_H
  2.   #define EQDCYL_H
  3. /***************************************************************************/
  4. /* RSC IDENTIFIER: EQUIDISTANT CYLINDRICAL
  5.  *
  6.  * ABSTRACT
  7.  *
  8.  *    This component provides conversions between Geodetic coordinates
  9.  *    (latitude and longitude in radians) and Equidistant Cylindrical projection coordinates
  10.  *    (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.  *          EQCY_NO_ERROR           : No errors occurred in function
  20.  *          EQCY_LAT_ERROR          : Latitude outside of valid range
  21.  *                                      (-90 to 90 degrees)
  22.  *          EQCY_LON_ERROR          : Longitude outside of valid range
  23.  *                                      (-180 to 360 degrees)
  24.  *          EQCY_EASTING_ERROR      : Easting outside of valid range
  25.  *                                      (False_Easting +/- ~20,000,000 m,
  26.  *                                       depending on ellipsoid parameters
  27.  *                                       and Standard Parallel)
  28.  *          EQCY_NORTHING_ERROR     : Northing outside of valid range
  29.  *                                      (False_Northing +/- 0 to ~10,000,000 m,
  30.  *                                       depending on ellipsoid parameters
  31.  *                                       and Standard Parallel)
  32.  *          EQCY_STDP_ERROR         : Standard parallel outside of valid range
  33.  *                                      (-90 to 90 degrees)
  34.  *          EQCY_CENT_MER_ERROR     : Central meridian outside of valid range
  35.  *                                      (-180 to 360 degrees)
  36.  *          EQCY_A_ERROR            : Semi-major axis less than or equal to zero
  37.  *          EQCY_INV_F_ERROR        : Inverse flattening outside of valid range
  38.  *                     (250 to 350)
  39.  *
  40.  * REUSE NOTES
  41.  *
  42.  *    EQUIDISTANT CYLINDRICAL is intended for reuse by any application that performs a
  43.  *    Equidistant Cylindrical projection or its inverse.
  44.  *
  45.  * REFERENCES
  46.  *
  47.  *    Further information on EQUIDISTANT CYLINDRICAL can be found in the Reuse Manual.
  48.  *
  49.  *    EQUIDISTANT CYLINDRICAL originated from :  U.S. Army Topographic Engineering Center
  50.  *                                Geospatial Information Division
  51.  *                                7701 Telegraph Road
  52.  *                                Alexandria, VA  22310-3864
  53.  *
  54.  * LICENSES
  55.  *
  56.  *    None apply to this component.
  57.  *
  58.  * RESTRICTIONS
  59.  *
  60.  *    EQUIDISTANT CYLINDRICAL has no restrictions.
  61.  *
  62.  * ENVIRONMENT
  63.  *
  64.  *    EQDCYL was tested and certified in the following environments:
  65.  *
  66.  *    1. Solaris 2.5 with GCC 2.8.1
  67.  *    2. MS Windows with MS Visual C++ 6
  68.  *
  69.  * MODIFICATIONS
  70.  *
  71.  *    Date              Description
  72.  *    ----              -----------
  73.  *    04/16/99          Original Code
  74.  *
  75.  */
  76. /***************************************************************************/
  77. /*
  78.  *                              DEFINES
  79.  */
  80.   #define EQCY_NO_ERROR           0x0000
  81.   #define EQCY_LAT_ERROR          0x0001
  82.   #define EQCY_LON_ERROR          0x0002
  83.   #define EQCY_EASTING_ERROR      0x0004
  84.   #define EQCY_NORTHING_ERROR     0x0008
  85.   #define EQCY_STDP_ERROR         0x0010
  86.   #define EQCY_CENT_MER_ERROR     0x0020
  87.   #define EQCY_A_ERROR            0x0040
  88.   #define EQCY_INV_F_ERROR        0x0080
  89. /***************************************************************************/
  90. /*
  91.  *                              FUNCTION PROTOTYPES
  92.  *                                for EQDCYL.C
  93.  */
  94. /* ensure proper linkage to c++ programs */
  95.   #ifdef __cplusplus
  96. extern "C" {
  97.   #endif
  98.   long Set_Equidistant_Cyl_Parameters(double a,
  99.                                       double f,
  100.                                       double Std_Parallel,
  101.                                       double Central_Meridian,
  102.                                       double False_Easting,
  103.                                       double False_Northing);
  104. /*
  105.  * The function Set_Equidistant_Cyl_Parameters receives the ellipsoid parameters and
  106.  * projection parameters as inputs, and sets the corresponding state
  107.  * variables.  It also calculates the spherical radius of the sphere having 
  108.  * the same area as the ellipsoid.  If any errors occur, the error code(s) 
  109.  * are returned by the function, otherwise EQCY_NO_ERROR is returned.
  110.  *
  111.  *    a                 : Semi-major axis of ellipsoid, in meters   (input)
  112.  *    f                 : Flattening of ellipsoid         (input)
  113.  *    Std_Parallel      : 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.  *                          standard parallel of the projection     (input)
  121.  */
  122.   void Get_Equidistant_Cyl_Parameters(double *a,
  123.                                       double *f,
  124.                                       double *Std_Parallel,
  125.                                       double *Central_Meridian,
  126.                                       double *False_Easting,
  127.                                       double *False_Northing);
  128. /*
  129.  * The function Get_Equidistant_Cyl_Parameters returns the current ellipsoid
  130.  * parameters and Equidistant Cylindrical projection parameters.
  131.  *
  132.  *    a                 : Semi-major axis of ellipsoid, in meters   (output)
  133.  *    f                 : Flattening of ellipsoid         (output)
  134.  *    Std_Parallel      : 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.  *                          standard parallel of the projection     (output)
  142.  */
  143.   long Convert_Geodetic_To_Equidistant_Cyl (double Latitude,
  144.                                             double Longitude,
  145.                                             double *Easting,
  146.                                             double *Northing);
  147. /*
  148.  * The function Convert_Geodetic_To_Equidistant_Cyl converts geodetic (latitude and
  149.  * longitude) coordinates to Equidistant Cylindrical projection easting, and northing
  150.  * coordinates, according to the current ellipsoid and Equidistant Cylindrical projection
  151.  * parameters.  If any errors occur, the error code(s) are returned by the
  152.  * function, otherwise EQCY_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_Equidistant_Cyl_To_Geodetic(double Easting,
  160.                                            double Northing,
  161.                                            double *Latitude,
  162.                                            double *Longitude);
  163. /*
  164.  * The function Convert_Equidistant_Cyl_To_Geodetic converts Equidistant Cylindrical projection
  165.  * easting and northing coordinates to geodetic (latitude and longitude)
  166.  * coordinates, according to the current ellipsoid and Equidistant Cylindrical projection
  167.  * coordinates.  If any errors occur, the error code(s) are returned by the
  168.  * function, otherwise EQCY_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 /* EQDCYL_H */