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

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef GRINTEN_H
  2.   #define GRINTEN_H
  3. /***************************************************************************/
  4. /* RSC IDENTIFIER: VAN DER GRINTEN
  5.  *
  6.  * ABSTRACT
  7.  *
  8.  *    This component provides conversions between Geodetic coordinates
  9.  *    (latitude and longitude in radians) and Van Der Grinten 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.  *          GRIN_NO_ERROR           : No errors occurred in function
  20.  *          GRIN_LAT_ERROR          : Latitude outside of valid range
  21.  *                                      (-90 to 90 degrees)
  22.  *          GRIN_LON_ERROR          : Longitude outside of valid range
  23.  *                                      (-180 to 360 degrees)
  24.  *          GRIN_EASTING_ERROR      : Easting outside of valid range
  25.  *                                      (False_Easting +/- ~20,000,000 m,
  26.  *                                       depending on ellipsoid parameters)
  27.  *          GRIN_NORTHING_ERROR     : Northing outside of valid range
  28.  *                                      (False_Northing +/- ~20,000,000 m,
  29.  *                                       depending on ellipsoid parameters)
  30.  *          GRIN_RADIUS_ERROR       : Coordinates too far from pole,
  31.  *                                      depending on ellipsoid and
  32.  *                                      projection parameters
  33.  *          GRIN_CENT_MER_ERROR     : Central meridian outside of valid range
  34.  *                                      (-180 to 360 degrees)
  35.  *          GRIN_A_ERROR            : Semi-major axis less than or equal to zero
  36.  *          GRIN_INV_F_ERROR        : Inverse flattening outside of valid range
  37.  *                     (250 to 350)
  38.  *
  39.  * REUSE NOTES
  40.  *
  41.  *    VAN DER GRINTEN is intended for reuse by any application that performs a
  42.  *    Van Der Grinten projection or its inverse.
  43.  *
  44.  * REFERENCES
  45.  *
  46.  *    Further information on VAN DER GRINTEN can be found in the Reuse Manual.
  47.  *
  48.  *    VAN DER GRINTEN originated from :  U.S. Army Topographic Engineering Center
  49.  *                                Geospatial Information Division
  50.  *                                7701 Telegraph Road
  51.  *                                Alexandria, VA  22310-3864
  52.  *
  53.  * LICENSES
  54.  *
  55.  *    None apply to this component.
  56.  *
  57.  * RESTRICTIONS
  58.  *
  59.  *    VAN DER GRINTEN has no restrictions.
  60.  *
  61.  * ENVIRONMENT
  62.  *
  63.  *    VAN DER GRINTEN was tested and certified in the following environments:
  64.  *
  65.  *    1. Solaris 2.5 with GCC, version 2.8.1
  66.  *    2. Windows 95 with MS Visual C++, version 6
  67.  *
  68.  * MODIFICATIONS
  69.  *
  70.  *    Date              Description
  71.  *    ----              -----------
  72.  *    10-02-97          Original Code
  73.  *
  74.  */
  75. /***************************************************************************/
  76. /*
  77.  *                              DEFINES
  78.  */
  79.   #define GRIN_NO_ERROR           0x0000
  80.   #define GRIN_LAT_ERROR          0x0001
  81.   #define GRIN_LON_ERROR          0x0002
  82.   #define GRIN_EASTING_ERROR      0x0004
  83.   #define GRIN_NORTHING_ERROR     0x0008
  84.   #define GRIN_CENT_MER_ERROR     0x0020
  85.   #define GRIN_A_ERROR            0x0040
  86.   #define GRIN_INV_F_ERROR        0x0080
  87.   #define GRIN_RADIUS_ERROR 0x0100
  88. /***************************************************************************/
  89. /*
  90.  *                              FUNCTION PROTOTYPES
  91.  *                                for GRINTEN.C
  92.  */
  93. /* ensure proper linkage to c++ programs */
  94.   #ifdef __cplusplus
  95. extern "C" {
  96.   #endif
  97.   long Set_Van_der_Grinten_Parameters(double a,
  98.                                       double f,
  99.                                       double Central_Meridian,
  100.                                       double False_Easting,
  101.                                       double False_Northing);
  102. /*
  103.  * The function Set_Van_der_Grinten_Parameters receives the ellipsoid parameters and
  104.  * Van Der Grinten projcetion parameters as inputs, and sets the corresponding state
  105.  * variables.  If any errors occur, the error code(s) are returned by the function, otherwise
  106.  * GRIN_NO_ERROR is returned.
  107.  *
  108.  *    a                 : Semi-major axis of ellipsoid, in meters   (input)
  109.  *    f                 : Flattening of ellipsoid         (input)
  110.  *    Central_Meridian  : Longitude in radians at the center of     (input)
  111.  *                          the projection
  112.  *    False_Easting     : A coordinate value in meters assigned to the
  113.  *                          central meridian of the projection.     (input)
  114.  *    False_Northing    : A coordinate value in meters assigned to the
  115.  *                          origin latitude of the projection       (input)
  116.  */
  117.   void Get_Van_der_Grinten_Parameters(double *a,
  118.                                       double *f,
  119.                                       double *Central_Meridian,
  120.                                       double *False_Easting,
  121.                                       double *False_Northing);
  122. /*
  123.  * The function Get_Van_der_Grinten_Parameters returns the current ellipsoid
  124.  * parameters, and Van Der Grinten projection parameters.
  125.  *
  126.  *    a                 : Semi-major axis of ellipsoid, in meters   (output)
  127.  *    f                 : Flattening of ellipsoid         (output)
  128.  *    Central_Meridian  : Longitude in radians at the center of     (output)
  129.  *                          the projection
  130.  *    False_Easting     : A coordinate value in meters assigned to the
  131.  *                          central meridian of the projection.     (output)
  132.  *    False_Northing    : A coordinate value in meters assigned to the
  133.  *                          origin latitude of the projection       (output) 
  134.  */
  135.   long Convert_Geodetic_To_Van_der_Grinten (double Latitude,
  136.                                             double Longitude,
  137.                                             double *Easting,
  138.                                             double *Northing);
  139. /*
  140.  * The function Convert_Geodetic_To_Van_der_Grinten converts geodetic (latitude and
  141.  * longitude) coordinates to Van Der Grinten projection easting, and northing
  142.  * coordinates, according to the current ellipsoid and Van Der Grinten projection
  143.  * parameters.  If any errors occur, the error code(s) are returned by the
  144.  * function, otherwise GRIN_NO_ERROR is returned.
  145.  *
  146.  *    Latitude          : Latitude (phi) in radians           (input)
  147.  *    Longitude         : Longitude (lambda) in radians       (input)
  148.  *    Easting           : Easting (X) in meters               (output)
  149.  *    Northing          : Northing (Y) in meters              (output)
  150.  */
  151.   long Convert_Van_der_Grinten_To_Geodetic(double Easting,
  152.                                            double Northing,
  153.                                            double *Latitude,
  154.                                            double *Longitude);
  155. /*
  156.  * The function Convert_Van_der_Grinten_To_Geodetic converts Van Der Grinten projection
  157.  * easting and northing coordinates to geodetic (latitude and longitude)
  158.  * coordinates, according to the current ellipsoid and Van Der Grinten projection
  159.  * coordinates.  If any errors occur, the error code(s) are returned by the
  160.  * function, otherwise GRIN_NO_ERROR is returned.
  161.  *
  162.  *    Easting           : Easting (X) in meters                  (input)
  163.  *    Northing          : Northing (Y) in meters                 (input)
  164.  *    Latitude          : Latitude (phi) in radians              (output)
  165.  *    Longitude         : Longitude (lambda) in radians          (output)
  166.  */
  167.   #ifdef __cplusplus
  168. }
  169.   #endif
  170. #endif /* GRINTEN_H */