projects.hpp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // This file is manually converted from PROJ4 (projects.h)
  3. // Copyright (c) 2008-2012 Barend Gehrels, Amsterdam, the Netherlands.
  4. // This file was modified by Oracle on 2017-2020.
  5. // Modifications copyright (c) 2017-2020, Oracle and/or its affiliates.
  6. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  7. // Use, modification and distribution is subject to the Boost Software License,
  8. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. // This file is converted from PROJ4, http://trac.osgeo.org/proj
  11. // PROJ4 is originally written by Gerald Evenden (then of the USGS)
  12. // PROJ4 is maintained by Frank Warmerdam
  13. // PROJ4 is converted to Geometry Library by Barend Gehrels (Geodan, Amsterdam)
  14. // Original copyright notice:
  15. // Permission is hereby granted, free of charge, to any person obtaining a
  16. // copy of this software and associated documentation files (the "Software"),
  17. // to deal in the Software without restriction, including without limitation
  18. // the rights to use, copy, modify, merge, publish, distribute, sublicense,
  19. // and/or sell copies of the Software, and to permit persons to whom the
  20. // Software is furnished to do so, subject to the following conditions:
  21. // The above copyright notice and this permission notice shall be included
  22. // in all copies or substantial portions of the Software.
  23. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  24. // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  25. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  26. // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  27. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  28. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  29. // DEALINGS IN THE SOFTWARE.
  30. #ifndef BOOST_GEOMETRY_PROJECTIONS_IMPL_PROJECTS_HPP
  31. #define BOOST_GEOMETRY_PROJECTIONS_IMPL_PROJECTS_HPP
  32. #include <cstring>
  33. #include <string>
  34. #include <vector>
  35. #include <boost/config.hpp>
  36. #include <boost/geometry/srs/projections/constants.hpp>
  37. #include <boost/geometry/srs/projections/dpar.hpp>
  38. #include <boost/geometry/srs/projections/spar.hpp>
  39. namespace boost { namespace geometry { namespace projections
  40. {
  41. #ifndef DOXYGEN_NO_DETAIL
  42. namespace detail
  43. {
  44. /* datum_type values */
  45. enum datum_type
  46. {
  47. datum_unknown = 0,
  48. datum_3param = 1,
  49. datum_7param = 2,
  50. datum_gridshift = 3,
  51. datum_wgs84 = 4 /* WGS84 (or anything considered equivelent) */
  52. };
  53. // Originally defined in proj_internal.h
  54. //enum pj_io_units {
  55. // pj_io_units_whatever = 0, /* Doesn't matter (or depends on pipeline neighbours) */
  56. // pj_io_units_classic = 1, /* Scaled meters (right), projected system */
  57. // pj_io_units_projected = 2, /* Meters, projected system */
  58. // pj_io_units_cartesian = 3, /* Meters, 3D cartesian system */
  59. // pj_io_units_angular = 4 /* Radians */
  60. //};
  61. // Originally defined in proj_internal.h
  62. /* Maximum latitudinal overshoot accepted */
  63. //static const double pj_epsilon_lat = 1e-12;
  64. template <typename T>
  65. struct pj_consts
  66. {
  67. // E L L I P S O I D P A R A M E T E R S
  68. T a; /* semimajor axis (radius if eccentricity==0) */
  69. T ra; /* 1/a */
  70. T e; /* first eccentricity */
  71. T es; /* first eccentricity squared */
  72. T one_es; /* 1 - e^2 */
  73. T rone_es; /* 1/one_es */
  74. T es_orig, a_orig; /* es and a before any +proj related adjustment */
  75. // C A R T O G R A P H I C O F F S E T S
  76. T lam0, phi0; /* central longitude, latitude */
  77. T x0, y0/*, z0, t0*/; /* false easting and northing (and height and time) */
  78. // S C A L I N G
  79. T k0; /* general scaling factor */
  80. T to_meter, fr_meter; /* cartesian scaling */
  81. T vto_meter, vfr_meter; /* Vertical scaling. Internal unit [m] */
  82. // D A T U M S A N D H E I G H T S Y S T E M S
  83. T from_greenwich; /* prime meridian offset (in radians) */
  84. T long_wrap_center; /* 0.0 for -180 to 180, actually in radians*/
  85. srs::detail::towgs84<T> datum_params; /* Parameters for 3PARAM and 7PARAM */
  86. srs::detail::nadgrids nadgrids; /* Names of horozontal grid files. */
  87. detail::datum_type datum_type; /* PJD_UNKNOWN/3PARAM/7PARAM/GRIDSHIFT/WGS84 */
  88. bool is_long_wrap_set;
  89. // C O O R D I N A T E H A N D L I N G
  90. bool over; /* over-range flag */
  91. bool geoc; /* geocentric latitude flag */
  92. bool is_latlong; /* proj=latlong ... not really a projection at all */
  93. bool is_geocent; /* proj=geocent ... not really a projection at all */
  94. //bool need_ellps; /* 0 for operations that are purely cartesian */
  95. //enum pj_io_units left; /* Flags for input/output coordinate types */
  96. //enum pj_io_units right;
  97. // Initialize all variables
  98. pj_consts()
  99. : a(0), ra(0)
  100. , e(0), es(0), one_es(0), rone_es(0)
  101. , es_orig(0), a_orig(0)
  102. , lam0(0), phi0(0)
  103. , x0(0), y0(0)/*, z0(0), t0(0)*/
  104. , k0(0) , to_meter(0), fr_meter(0), vto_meter(0), vfr_meter(0)
  105. , from_greenwich(0), long_wrap_center(0)
  106. , datum_type(datum_unknown)
  107. , is_long_wrap_set(false)
  108. , over(false), geoc(false), is_latlong(false), is_geocent(false)
  109. //, need_ellps(true)
  110. //, left(PJ_IO_UNITS_ANGULAR), right(PJ_IO_UNITS_CLASSIC)
  111. {}
  112. };
  113. // PROJ4 complex. Might be replaced with std::complex
  114. template <typename T>
  115. struct pj_complex { T r, i; };
  116. } // namespace detail
  117. #endif // DOXYGEN_NO_DETAIL
  118. /*!
  119. \brief parameters, projection parameters
  120. \details This structure initializes all projections
  121. \ingroup projection
  122. */
  123. template <typename T>
  124. struct parameters : public detail::pj_consts<T>
  125. {
  126. typedef T type;
  127. struct proj_id
  128. {
  129. proj_id()
  130. : id(srs::dpar::proj_unknown)
  131. {}
  132. proj_id(srs::dpar::value_proj i)
  133. : id(i)
  134. {}
  135. proj_id(std::string const& s)
  136. : id(srs::dpar::proj_unknown)
  137. , name(s)
  138. {}
  139. bool is_unknown() const
  140. {
  141. return id == srs::dpar::proj_unknown && name.empty();
  142. }
  143. // Either one of these is set:
  144. srs::dpar::value_proj id; // id of projection
  145. std::string name; // name of projection
  146. };
  147. proj_id id;
  148. };
  149. }}} // namespace boost::geometry::projections
  150. #endif // BOOST_GEOMETRY_PROJECTIONS_IMPL_PROJECTS_HPP