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

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef MILLER_H
  2.   #define MILLER_H
  3. /***************************************************************************/
  4. /* RSC IDENTIFIER: MILLER
  5.  *
  6.  * ABSTRACT
  7.  *
  8.  *    This component provides conversions between Geodetic coordinates
  9.  *    (latitude and longitude in radians) and Miller Cylindrical projection 
  10.  *    coordinates (easting and northing in meters).  The Miller Cylindrical
  11.  *    projection employs a spherical Earth model.  The Spherical Radius
  12.  *    used is the the radius of the sphere having the same area as the
  13.  *    ellipsoid.
  14.  *
  15.  * ERROR HANDLING
  16.  *
  17.  *    This component checks parameters for valid values.  If an invalid value
  18.  *    is found, the error code is combined with the current error code using
  19.  *    the bitwise or.  This combining allows multiple error codes to be
  20.  *    returned. The possible error codes are:
  21.  *
  22.  *          MILL_NO_ERROR           : No errors occurred in function
  23.  *          MILL_LAT_ERROR          : Latitude outside of valid range
  24.  *                                      (-90 to 90 degrees)
  25.  *          MILL_LON_ERROR          : Longitude outside of valid range
  26.  *                                      (-180 to 360 degrees)
  27.  *          MILL_EASTING_ERROR      : Easting outside of valid range
  28.  *                                      (False_Easting +/- ~20,000,000 m,
  29.  *                                       depending on ellipsoid parameters)
  30.  *          MILL_NORTHING_ERROR     : Northing outside of valid range
  31.  *                                      (False_Northing +/- ~14,000,000 m,
  32.  *                                       depending on ellipsoid parameters)
  33.  *          MILL_CENT_MER_ERROR     : Central meridian outside of valid range
  34.  *                                      (-180 to 360 degrees)
  35.  *          MILL_A_ERROR            : Semi-major axis less than or equal to zero
  36.  *          MILL_INV_F_ERROR        : Inverse flattening outside of valid range
  37.  *                     (250 to 350)
  38.  *
  39.  * REUSE NOTES
  40.  *
  41.  *    MILLER is intended for reuse by any application that performs a
  42.  *    Miller Cylindrical projection or its inverse.
  43.  *
  44.  * REFERENCES
  45.  *
  46.  *    Further information on MILLER can be found in the Reuse Manual.
  47.  *
  48.  *    MILLER 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.  *    MILLER has no restrictions.
  60.  *
  61.  * ENVIRONMENT
  62.  *
  63.  *    MILLER was tested and certified in the following environments:
  64.  *
  65.  *    1. Solaris 2.5 with GCC 2.8.1
  66.  *    2. Windows 95 with MS Visual C++ 6
  67.  *
  68.  * MODIFICATIONS
  69.  *
  70.  *    Date              Description
  71.  *    ----              -----------
  72.  *    04/16/99          Original Code
  73.  *
  74.  */
  75. /***************************************************************************/
  76. /*
  77.  *                              DEFINES
  78.  */
  79.   #define MILL_NO_ERROR           0x0000
  80.   #define MILL_LAT_ERROR          0x0001
  81.   #define MILL_LON_ERROR          0x0002
  82.   #define MILL_EASTING_ERROR      0x0004
  83.   #define MILL_NORTHING_ERROR     0x0008
  84.   #define MILL_CENT_MER_ERROR     0x0020
  85.   #define MILL_A_ERROR            0x0040
  86.   #define MILL_INV_F_ERROR        0x0080
  87. /***************************************************************************/
  88. /*
  89.  *                              FUNCTION PROTOTYPES
  90.  *                                for MILLER.C
  91.  */
  92. /* ensure proper linkage to c++ programs */
  93.   #ifdef __cplusplus
  94. extern "C" {
  95.   #endif
  96.   long Set_Miller_Parameters(double a,
  97.                              double f,
  98.                              double Central_Meridian,
  99.                              double False_Easting,
  100.                              double False_Northing);
  101. /*
  102.  * The function Set_Miller_Parameters receives the ellipsoid parameters and
  103.  * Miller Cylindrical projcetion parameters as inputs, and sets the corresponding
  104.  * state variables.  If any errors occur, the error code(s) are returned by the 
  105.  * function, otherwise MILL_NO_ERROR is returned.
  106.  *
  107.  *    a                 : Semi-major axis of ellipsoid, in meters   (input)
  108.  *    f                 : Flattening of ellipsoid         (input)
  109.  *    Central_Meridian  : Longitude in radians at the center of     (input)
  110.  *                          the projection
  111.  *    False_Easting     : A coordinate value in meters assigned to the
  112.  *                          central meridian of the projection.     (input)
  113.  *    False_Northing    : A coordinate value in meters assigned to the
  114.  *                          origin latitude of the projection       (input)
  115.  */
  116.   void Get_Miller_Parameters(double *a,
  117.                              double *f,
  118.                              double *Central_Meridian,
  119.                              double *False_Easting,
  120.                              double *False_Northing);
  121. /*
  122.  * The function Get_Miller_Parameters returns the current ellipsoid
  123.  * parameters and Miller Cylindrical projection parameters.
  124.  *
  125.  *    a                 : Semi-major axis of ellipsoid, in meters   (output)
  126.  *    f                 : Flattening of ellipsoid         (output)
  127.  *    Central_Meridian  : Longitude in radians at the center of     (output)
  128.  *                          the projection
  129.  *    False_Easting     : A coordinate value in meters assigned to the
  130.  *                          central meridian of the projection.     (output)
  131.  *    False_Northing    : A coordinate value in meters assigned to the
  132.  *                          origin latitude of the projection       (output)
  133.  */
  134.   long Convert_Geodetic_To_Miller (double Latitude,
  135.                                    double Longitude,
  136.                                    double *Easting,
  137.                                    double *Northing);
  138. /*
  139.  * The function Convert_Geodetic_To_Miller converts geodetic (latitude and
  140.  * longitude) coordinates to Miller Cylindrical projection easting, and northing
  141.  * coordinates, according to the current ellipsoid and Miller Cylindrical projection
  142.  * parameters.  If any errors occur, the error code(s) are returned by the
  143.  * function, otherwise MILL_NO_ERROR is returned.
  144.  *
  145.  *    Latitude          : Latitude (phi) in radians           (input)
  146.  *    Longitude         : Longitude (lambda) in radians       (input)
  147.  *    Easting           : Easting (X) in meters               (output)
  148.  *    Northing          : Northing (Y) in meters              (output)
  149.  */
  150.   long Convert_Miller_To_Geodetic(double Easting,
  151.                                   double Northing,
  152.                                   double *Latitude,
  153.                                   double *Longitude);
  154. /*
  155.  * The function Convert_Miller_To_Geodetic converts Miller Cylindrical projection
  156.  * easting and northing coordinates to geodetic (latitude and longitude)
  157.  * coordinates, according to the current ellipsoid and Miller Cylindrical projection
  158.  * coordinates.  If any errors occur, the error code(s) are returned by the
  159.  * function, otherwise MILL_NO_ERROR is returned.
  160.  *
  161.  *    Easting           : Easting (X) in meters                  (input)
  162.  *    Northing          : Northing (Y) in meters                 (input)
  163.  *    Latitude          : Latitude (phi) in radians              (output)
  164.  *    Longitude         : Longitude (lambda) in radians          (output)
  165.  */
  166.   #ifdef __cplusplus
  167. }
  168.   #endif
  169. #endif /* MILLER_H */