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

GDI/图象编程

开发平台:

Visual C++

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