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

GDI/图象编程

开发平台:

Visual C++

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