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

GDI/图象编程

开发平台:

Visual C++

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