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

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef BONNE_H
  2. #define BONNE_H
  3. /***************************************************************************/
  4. /* RSC IDENTIFIER: BONNE
  5.  *
  6.  * ABSTRACT
  7.  *
  8.  *    This component provides conversions between Geodetic coordinates 
  9.  *    (latitude and longitude in radians) and Bonne 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.  *          BONN_NO_ERROR           : No errors occurred in function
  20.  *          BONN_LAT_ERROR          : Latitude outside of valid range
  21.  *                                      (-90 to 90 degrees)
  22.  *          BONN_LON_ERROR          : Longitude outside of valid range
  23.  *                                      (-180 to 360 degrees)
  24.  *          BONN_EASTING_ERROR      : Easting outside of valid range
  25.  *                                      (False_Easting +/- ~20,500,000 m,
  26.  *                                       depending on ellipsoid parameters
  27.  *                                       and Origin_Latitude)
  28.  *          BONN_NORTHING_ERROR     : Northing outside of valid range
  29.  *                                      (False_Northing +/- ~23,500,000 m,
  30.  *                                       depending on ellipsoid parameters
  31.  *                                       and Origin_Latitude)
  32.  *          BONN_ORIGIN_LAT_ERROR   : Origin latitude outside of valid range
  33.  *                                      (-90 to 90 degrees)
  34.  *          BONN_CENT_MER_ERROR     : Central meridian outside of valid range
  35.  *                                      (-180 to 360 degrees)
  36.  *          BONN_A_ERROR            : Semi-major axis less than or equal to zero
  37.  *          BONN_INV_F_ERROR        : Inverse flattening outside of valid range
  38.  *                     (250 to 350)
  39.  *
  40.  * REUSE NOTES
  41.  *
  42.  *    BONNE is intended for reuse by any application that performs a
  43.  *    Bonne projection or its inverse.
  44.  *    
  45.  * REFERENCES
  46.  *
  47.  *    Further information on BONNE can be found in the Reuse Manual.
  48.  *
  49.  *    BONNE 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.  *    BONNE has no restrictions.
  61.  *
  62.  * ENVIRONMENT
  63.  *
  64.  *    BONNE was tested and certified in the following environments:
  65.  *
  66.  *    1. Solaris 2.5 with GCC 2.8.1
  67.  *    2. MS Windows 95 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 BONN_NO_ERROR           0x0000
  81. #define BONN_LAT_ERROR          0x0001
  82. #define BONN_LON_ERROR          0x0002
  83. #define BONN_EASTING_ERROR      0x0004
  84. #define BONN_NORTHING_ERROR     0x0008
  85. #define BONN_ORIGIN_LAT_ERROR   0x0010
  86. #define BONN_CENT_MER_ERROR     0x0020
  87. #define BONN_A_ERROR            0x0040
  88. #define BONN_INV_F_ERROR        0x0080
  89. /***************************************************************************/
  90. /*
  91.  *                              FUNCTION PROTOTYPES
  92.  *                                for BONNE.C
  93.  */
  94. /* ensure proper linkage to c++ programs */
  95. #ifdef __cplusplus
  96. extern "C" {
  97. #endif
  98.   long Set_Bonne_Parameters(double a,
  99.                             double f,
  100.                             double Origin_Latitude,
  101.                             double Central_Meridian,
  102.                             double False_Easting,
  103.                             double False_Northing);
  104. /*
  105.  * The function Set_Bonne_Parameters receives the ellipsoid parameters and
  106.  * Bonne projcetion parameters as inputs, and sets the corresponding state
  107.  * variables.  If any errors occur, the error code(s) are returned by the 
  108.  * function, otherwise BONN_NO_ERROR is returned.
  109.  *
  110.  *    a                 : Semi-major axis of ellipsoid, in meters   (input)
  111.  *    f                 : Flattening of ellipsoid                   (input)
  112.  *    Origin_Latitude   : Latitude in radians at which the          (input)
  113.  *                          point scale factor is 1.0
  114.  *    Central_Meridian  : Longitude in radians at the center of     (input)
  115.  *                          the projection
  116.  *    False_Easting     : A coordinate value in meters assigned to the
  117.  *                          central meridian of the projection.     (input)
  118.  *    False_Northing    : A coordinate value in meters assigned to the
  119.  *                          origin latitude of the projection       (input)
  120.  */
  121.   void Get_Bonne_Parameters(double *a,
  122.                             double *f,
  123.                             double *Origin_Latitude,
  124.                             double *Central_Meridian,
  125.                             double *False_Easting,
  126.                             double *False_Northing);
  127. /*
  128.  * The function Get_Bonne_Parameters returns the current ellipsoid
  129.  * parameters and Bonne projection parameters.
  130.  *
  131.  *    a                 : Semi-major axis of ellipsoid, in meters   (output)
  132.  *    f                 : Flattening of ellipsoid                   (output)
  133.  *    Origin_Latitude   : Latitude in radians at which the          (output)
  134.  *                          point scale factor is 1.0
  135.  *    Central_Meridian  : Longitude in radians at the center of     (output)
  136.  *                          the projection
  137.  *    False_Easting     : A coordinate value in meters assigned to the
  138.  *                          central meridian of the projection.     (output)
  139.  *    False_Northing    : A coordinate value in meters assigned to the
  140.  *                          origin latitude of the projection       (output)
  141.  */
  142.   long Convert_Geodetic_To_Bonne (double Latitude,
  143.                                   double Longitude,
  144.                                   double *Easting,
  145.                                   double *Northing); 
  146. /*
  147.  * The function Convert_Geodetic_To_Bonne converts geodetic (latitude and
  148.  * longitude) coordinates to Bonne projection easting, and northing
  149.  * coordinates, according to the current ellipsoid and Bonne projection
  150.  * parameters.  If any errors occur, the error code(s) are returned by the
  151.  * function, otherwise BONN_NO_ERROR is returned.
  152.  *
  153.  *    Latitude          : Latitude (phi) in radians           (input)
  154.  *    Longitude         : Longitude (lambda) in radians       (input)
  155.  *    Easting           : Easting (X) in meters               (output)
  156.  *    Northing          : Northing (Y) in meters              (output)
  157.  */
  158.   long Convert_Bonne_To_Geodetic(double Easting,
  159.                                  double Northing,
  160.                                  double *Latitude,
  161.                                  double *Longitude);
  162. /*
  163.  * The function Convert_Bonne_To_Geodetic converts Bonne projection
  164.  * easting and northing coordinates to geodetic (latitude and longitude)
  165.  * coordinates, according to the current ellipsoid and Bonne projection
  166.  * coordinates.  If any errors occur, the error code(s) are returned by the
  167.  * function, otherwise BONN_NO_ERROR is returned.
  168.  *
  169.  *    Easting           : Easting (X) in meters                  (input)
  170.  *    Northing          : Northing (Y) in meters                 (input)
  171.  *    Latitude          : Latitude (phi) in radians              (output)
  172.  *    Longitude         : Longitude (lambda) in radians          (output)
  173.  */
  174. #ifdef __cplusplus
  175. }
  176. #endif
  177. #endif /* BONNE_H */