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

GDI/图象编程

开发平台:

Visual C++

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