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

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef TRANMERC_H
  2.   #define TRANMERC_H
  3. /***************************************************************************/
  4. /* RSC IDENTIFIER: TRANSVERSE MERCATOR
  5.  *
  6.  * ABSTRACT
  7.  *
  8.  *    This component provides conversions between Geodetic coordinates 
  9.  *    (latitude and longitude) and Transverse Mercator projection coordinates
  10.  *    (easting and northing).
  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.  *       TRANMERC_NO_ERROR           : No errors occurred in function
  20.  *       TRANMERC_LAT_ERROR          : Latitude outside of valid range
  21.  *                                      (-90 to 90 degrees)
  22.  *       TRANMERC_LON_ERROR          : Longitude outside of valid range
  23.  *                                      (-180 to 360 degrees, and within
  24.  *                                        +/-90 of Central Meridian)
  25.  *       TRANMERC_EASTING_ERROR      : Easting outside of valid range
  26.  *                                      (depending on ellipsoid and
  27.  *                                       projection parameters)
  28.  *       TRANMERC_NORTHING_ERROR     : Northing outside of valid range
  29.  *                                      (depending on ellipsoid and
  30.  *                                       projection parameters)
  31.  *       TRANMERC_ORIGIN_LAT_ERROR   : Origin latitude outside of valid range
  32.  *                                      (-90 to 90 degrees)
  33.  *       TRANMERC_CENT_MER_ERROR     : Central meridian outside of valid range
  34.  *                                      (-180 to 360 degrees)
  35.  *       TRANMERC_A_ERROR            : Semi-major axis less than or equal to zero
  36.  *       TRANMERC_INV_F_ERROR        : Inverse flattening outside of valid range
  37.  *                      (250 to 350)
  38.  *       TRANMERC_SCALE_FACTOR_ERROR : Scale factor outside of valid
  39.  *                                     range (0.3 to 3.0)
  40.  *  TM_LON_WARNING              : Distortion will result if longitude is more
  41.  *                                      than 9 degrees from the Central Meridian
  42.  *
  43.  * REUSE NOTES
  44.  *
  45.  *    TRANSVERSE MERCATOR is intended for reuse by any application that 
  46.  *    performs a Transverse Mercator projection or its inverse.
  47.  *    
  48.  * REFERENCES
  49.  *
  50.  *    Further information on TRANSVERSE MERCATOR can be found in the 
  51.  *    Reuse Manual.
  52.  *
  53.  *    TRANSVERSE MERCATOR originated from :  
  54.  *                      U.S. Army Topographic Engineering Center
  55.  *                      Geospatial Information Division
  56.  *                      7701 Telegraph Road
  57.  *                      Alexandria, VA  22310-3864
  58.  *
  59.  * LICENSES
  60.  *
  61.  *    None apply to this component.
  62.  *
  63.  * RESTRICTIONS
  64.  *
  65.  *    TRANSVERSE MERCATOR has no restrictions.
  66.  *
  67.  * ENVIRONMENT
  68.  *
  69.  *    TRANSVERSE MERCATOR was tested and certified in the following 
  70.  *    environments:
  71.  *
  72.  *    1. Solaris 2.5 with GCC, version 2.8.1
  73.  *    2. Windows 95 with MS Visual C++, version 6
  74.  *
  75.  * MODIFICATIONS
  76.  *
  77.  *    Date              Description
  78.  *    ----              -----------
  79.  *    10-02-97          Original Code
  80.  *    03-02-97          Re-engineered Code
  81.  *
  82.  */
  83. /***************************************************************************/
  84. /*
  85.  *                              DEFINES
  86.  */
  87.   #define TRANMERC_NO_ERROR           0x0000
  88.   #define TRANMERC_LAT_ERROR          0x0001
  89.   #define TRANMERC_LON_ERROR          0x0002
  90.   #define TRANMERC_EASTING_ERROR      0x0004
  91.   #define TRANMERC_NORTHING_ERROR     0x0008
  92.   #define TRANMERC_ORIGIN_LAT_ERROR   0x0010
  93.   #define TRANMERC_CENT_MER_ERROR     0x0020
  94.   #define TRANMERC_A_ERROR            0x0040
  95.   #define TRANMERC_INV_F_ERROR        0x0080
  96.   #define TRANMERC_SCALE_FACTOR_ERROR 0x0100
  97.   #define TRANMERC_LON_WARNING        0x0200
  98. /***************************************************************************/
  99. /*
  100.  *                              FUNCTION PROTOTYPES
  101.  *                                for TRANMERC.C
  102.  */
  103. /* ensure proper linkage to c++ programs */
  104.   #ifdef __cplusplus
  105. extern "C" {
  106.   #endif
  107.   long Set_Transverse_Mercator_Parameters(double a,      
  108.                                           double f,
  109.                                           double Origin_Latitude,
  110.                                           double Central_Meridian,
  111.                                           double False_Easting,
  112.                                           double False_Northing,
  113.                                           double Scale_Factor);
  114. /*
  115.  * The function Set_Tranverse_Mercator_Parameters receives the ellipsoid
  116.  * parameters and Tranverse Mercator projection parameters as inputs, and
  117.  * sets the corresponding state variables. If any errors occur, the error
  118.  * code(s) are returned by the function, otherwise TRANMERC_NO_ERROR is
  119.  * returned.
  120.  *
  121.  *    a                 : Semi-major axis of ellipsoid, in meters    (input)
  122.  *    f                 : Flattening of ellipsoid                    (input)
  123.  *    Origin_Latitude   : Latitude in radians at the origin of the   (input)
  124.  *                         projection
  125.  *    Central_Meridian  : Longitude in radians at the center of the  (input)
  126.  *                         projection
  127.  *    False_Easting     : Easting/X at the center of the projection  (input)
  128.  *    False_Northing    : Northing/Y at the center of the projection (input)
  129.  *    Scale_Factor      : Projection scale factor                    (input) 
  130.  */
  131.   void Get_Transverse_Mercator_Parameters(double *a,
  132.                                           double *f,
  133.                                           double *Origin_Latitude,
  134.                                           double *Central_Meridian,
  135.                                           double *False_Easting,
  136.                                           double *False_Northing,
  137.                                           double *Scale_Factor);
  138. /*
  139.  * The function Get_Transverse_Mercator_Parameters returns the current
  140.  * ellipsoid and Transverse Mercator projection parameters.
  141.  *
  142.  *    a                 : Semi-major axis of ellipsoid, in meters    (output)
  143.  *    f                 : Flattening of ellipsoid                    (output)
  144.  *    Origin_Latitude   : Latitude in radians at the origin of the   (output)
  145.  *                         projection
  146.  *    Central_Meridian  : Longitude in radians at the center of the  (output)
  147.  *                         projection
  148.  *    False_Easting     : Easting/X at the center of the projection  (output)
  149.  *    False_Northing    : Northing/Y at the center of the projection (output)
  150.  *    Scale_Factor      : Projection scale factor                    (output) 
  151.  */
  152.   long Convert_Geodetic_To_Transverse_Mercator (double Latitude,
  153.                                                 double Longitude,
  154.                                                 double *Easting,
  155.                                                 double *Northing);
  156. /*
  157.  * The function Convert_Geodetic_To_Transverse_Mercator converts geodetic
  158.  * (latitude and longitude) coordinates to Transverse Mercator projection
  159.  * (easting and northing) coordinates, according to the current ellipsoid
  160.  * and Transverse Mercator projection coordinates.  If any errors occur, the
  161.  * error code(s) are returned by the function, otherwise TRANMERC_NO_ERROR is
  162.  * returned.
  163.  *
  164.  *    Latitude      : Latitude in radians                         (input)
  165.  *    Longitude     : Longitude in radians                        (input)
  166.  *    Easting       : Easting/X in meters                         (output)
  167.  *    Northing      : Northing/Y in meters                        (output)
  168.  */
  169.   long Convert_Transverse_Mercator_To_Geodetic (double Easting,
  170.                                                 double Northing,
  171.                                                 double *Latitude,
  172.                                                 double *Longitude);
  173. /*
  174.  * The function Convert_Transverse_Mercator_To_Geodetic converts Transverse
  175.  * Mercator projection (easting and northing) coordinates to geodetic
  176.  * (latitude and longitude) coordinates, according to the current ellipsoid
  177.  * and Transverse Mercator projection parameters.  If any errors occur, the
  178.  * error code(s) are returned by the function, otherwise TRANMERC_NO_ERROR is
  179.  * returned.
  180.  *
  181.  *    Easting       : Easting/X in meters                         (input)
  182.  *    Northing      : Northing/Y in meters                        (input)
  183.  *    Latitude      : Latitude in radians                         (output)
  184.  *    Longitude     : Longitude in radians                        (output)
  185.  */
  186.   #ifdef __cplusplus
  187. }
  188.   #endif
  189. #endif /* TRANMERC_H */