omerc.hpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. // Boost.Geometry - gis-projections (based on PROJ4)
  2. // Copyright (c) 2008-2015 Barend Gehrels, Amsterdam, the Netherlands.
  3. // This file was modified by Oracle on 2017, 2018, 2019.
  4. // Modifications copyright (c) 2017-2019, Oracle and/or its affiliates.
  5. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle.
  6. // Use, modification and distribution is subject to the Boost Software License,
  7. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. // This file is converted from PROJ4, http://trac.osgeo.org/proj
  10. // PROJ4 is originally written by Gerald Evenden (then of the USGS)
  11. // PROJ4 is maintained by Frank Warmerdam
  12. // PROJ4 is converted to Boost.Geometry by Barend Gehrels
  13. // Last updated version of proj: 5.0.0
  14. // Original copyright notice:
  15. // Copyright (c) 2003, 2006 Gerald I. Evenden
  16. // Permission is hereby granted, free of charge, to any person obtaining a
  17. // copy of this software and associated documentation files (the "Software"),
  18. // to deal in the Software without restriction, including without limitation
  19. // the rights to use, copy, modify, merge, publish, distribute, sublicense,
  20. // and/or sell copies of the Software, and to permit persons to whom the
  21. // Software is furnished to do so, subject to the following conditions:
  22. // The above copyright notice and this permission notice shall be included
  23. // in all copies or substantial portions of the Software.
  24. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  25. // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  26. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  27. // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  28. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  29. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  30. // DEALINGS IN THE SOFTWARE.
  31. #ifndef BOOST_GEOMETRY_PROJECTIONS_OMERC_HPP
  32. #define BOOST_GEOMETRY_PROJECTIONS_OMERC_HPP
  33. #include <boost/geometry/util/math.hpp>
  34. #include <boost/geometry/srs/projections/impl/base_static.hpp>
  35. #include <boost/geometry/srs/projections/impl/base_dynamic.hpp>
  36. #include <boost/geometry/srs/projections/impl/factory_entry.hpp>
  37. #include <boost/geometry/srs/projections/impl/pj_param.hpp>
  38. #include <boost/geometry/srs/projections/impl/pj_phi2.hpp>
  39. #include <boost/geometry/srs/projections/impl/pj_tsfn.hpp>
  40. #include <boost/geometry/srs/projections/impl/projects.hpp>
  41. namespace boost { namespace geometry
  42. {
  43. namespace projections
  44. {
  45. #ifndef DOXYGEN_NO_DETAIL
  46. namespace detail { namespace omerc
  47. {
  48. template <typename T>
  49. struct par_omerc
  50. {
  51. T A, B, E, AB, ArB, BrA, rB, singam, cosgam, sinrot, cosrot;
  52. T v_pole_n, v_pole_s, u_0;
  53. bool no_rot;
  54. };
  55. static const double tolerance = 1.e-7;
  56. static const double epsilon = 1.e-10;
  57. template <typename T, typename Parameters>
  58. struct base_omerc_ellipsoid
  59. {
  60. par_omerc<T> m_proj_parm;
  61. // FORWARD(e_forward) ellipsoid
  62. // Project coordinates from geographic (lon, lat) to cartesian (x, y)
  63. inline void fwd(Parameters const& par, T const& lp_lon, T const& lp_lat, T& xy_x, T& xy_y) const
  64. {
  65. static const T half_pi = detail::half_pi<T>();
  66. T s, t, U, V, W, temp, u, v;
  67. if (fabs(fabs(lp_lat) - half_pi) > epsilon) {
  68. W = this->m_proj_parm.E / math::pow(pj_tsfn(lp_lat, sin(lp_lat), par.e), this->m_proj_parm.B);
  69. temp = 1. / W;
  70. s = .5 * (W - temp);
  71. t = .5 * (W + temp);
  72. V = sin(this->m_proj_parm.B * lp_lon);
  73. U = (s * this->m_proj_parm.singam - V * this->m_proj_parm.cosgam) / t;
  74. if (fabs(fabs(U) - 1.0) < epsilon) {
  75. BOOST_THROW_EXCEPTION( projection_exception(error_tolerance_condition) );
  76. }
  77. v = 0.5 * this->m_proj_parm.ArB * log((1. - U)/(1. + U));
  78. temp = cos(this->m_proj_parm.B * lp_lon);
  79. if(fabs(temp) < tolerance) {
  80. u = this->m_proj_parm.A * lp_lon;
  81. } else {
  82. u = this->m_proj_parm.ArB * atan2((s * this->m_proj_parm.cosgam + V * this->m_proj_parm.singam), temp);
  83. }
  84. } else {
  85. v = lp_lat > 0 ? this->m_proj_parm.v_pole_n : this->m_proj_parm.v_pole_s;
  86. u = this->m_proj_parm.ArB * lp_lat;
  87. }
  88. if (this->m_proj_parm.no_rot) {
  89. xy_x = u;
  90. xy_y = v;
  91. } else {
  92. u -= this->m_proj_parm.u_0;
  93. xy_x = v * this->m_proj_parm.cosrot + u * this->m_proj_parm.sinrot;
  94. xy_y = u * this->m_proj_parm.cosrot - v * this->m_proj_parm.sinrot;
  95. }
  96. }
  97. // INVERSE(e_inverse) ellipsoid
  98. // Project coordinates from cartesian (x, y) to geographic (lon, lat)
  99. inline void inv(Parameters const& par, T const& xy_x, T const& xy_y, T& lp_lon, T& lp_lat) const
  100. {
  101. static const T half_pi = detail::half_pi<T>();
  102. T u, v, Qp, Sp, Tp, Vp, Up;
  103. if (this->m_proj_parm.no_rot) {
  104. v = xy_y;
  105. u = xy_x;
  106. } else {
  107. v = xy_x * this->m_proj_parm.cosrot - xy_y * this->m_proj_parm.sinrot;
  108. u = xy_y * this->m_proj_parm.cosrot + xy_x * this->m_proj_parm.sinrot + this->m_proj_parm.u_0;
  109. }
  110. Qp = exp(- this->m_proj_parm.BrA * v);
  111. Sp = .5 * (Qp - 1. / Qp);
  112. Tp = .5 * (Qp + 1. / Qp);
  113. Vp = sin(this->m_proj_parm.BrA * u);
  114. Up = (Vp * this->m_proj_parm.cosgam + Sp * this->m_proj_parm.singam) / Tp;
  115. if (fabs(fabs(Up) - 1.) < epsilon) {
  116. lp_lon = 0.;
  117. lp_lat = Up < 0. ? -half_pi : half_pi;
  118. } else {
  119. lp_lat = this->m_proj_parm.E / sqrt((1. + Up) / (1. - Up));
  120. if ((lp_lat = pj_phi2(math::pow(lp_lat, T(1) / this->m_proj_parm.B), par.e)) == HUGE_VAL) {
  121. BOOST_THROW_EXCEPTION( projection_exception(error_tolerance_condition) );
  122. }
  123. lp_lon = - this->m_proj_parm.rB * atan2((Sp * this->m_proj_parm.cosgam -
  124. Vp * this->m_proj_parm.singam), cos(this->m_proj_parm.BrA * u));
  125. }
  126. }
  127. static inline std::string get_name()
  128. {
  129. return "omerc_ellipsoid";
  130. }
  131. };
  132. // Oblique Mercator
  133. template <typename Params, typename Parameters, typename T>
  134. inline void setup_omerc(Params const& params, Parameters & par, par_omerc<T>& proj_parm)
  135. {
  136. static const T fourth_pi = detail::fourth_pi<T>();
  137. static const T half_pi = detail::half_pi<T>();
  138. static const T pi = detail::pi<T>();
  139. static const T two_pi = detail::two_pi<T>();
  140. T con, com, cosph0, D, F, H, L, sinph0, p, J, gamma=0,
  141. gamma0, lamc=0, lam1=0, lam2=0, phi1=0, phi2=0, alpha_c=0;
  142. int alp, gam, no_off = 0;
  143. proj_parm.no_rot = pj_get_param_b<srs::spar::no_rot>(params, "no_rot", srs::dpar::no_rot);
  144. alp = pj_param_r<srs::spar::alpha>(params, "alpha", srs::dpar::alpha, alpha_c);
  145. gam = pj_param_r<srs::spar::gamma>(params, "gamma", srs::dpar::gamma, gamma);
  146. if (alp || gam) {
  147. lamc = pj_get_param_r<T, srs::spar::lonc>(params, "lonc", srs::dpar::lonc);
  148. // NOTE: This is not needed in Boost.Geometry
  149. //no_off =
  150. // /* For libproj4 compatability */
  151. // pj_param_exists(par.params, "no_off")
  152. // /* for backward compatibility */
  153. // || pj_param_exists(par.params, "no_uoff");
  154. //if( no_off )
  155. //{
  156. // /* Mark the parameter as used, so that the pj_get_def() return them */
  157. // pj_get_param_s(par.params, "no_uoff");
  158. // pj_get_param_s(par.params, "no_off");
  159. //}
  160. } else {
  161. lam1 = pj_get_param_r<T, srs::spar::lon_1>(params, "lon_1", srs::dpar::lon_1);
  162. phi1 = pj_get_param_r<T, srs::spar::lat_1>(params, "lat_1", srs::dpar::lat_1);
  163. lam2 = pj_get_param_r<T, srs::spar::lon_2>(params, "lon_2", srs::dpar::lon_2);
  164. phi2 = pj_get_param_r<T, srs::spar::lat_2>(params, "lat_2", srs::dpar::lat_2);
  165. if (fabs(phi1 - phi2) <= tolerance ||
  166. (con = fabs(phi1)) <= tolerance ||
  167. fabs(con - half_pi) <= tolerance ||
  168. fabs(fabs(par.phi0) - half_pi) <= tolerance ||
  169. fabs(fabs(phi2) - half_pi) <= tolerance)
  170. BOOST_THROW_EXCEPTION( projection_exception(error_lat_0_or_alpha_eq_90) );
  171. }
  172. com = sqrt(par.one_es);
  173. if (fabs(par.phi0) > epsilon) {
  174. sinph0 = sin(par.phi0);
  175. cosph0 = cos(par.phi0);
  176. con = 1. - par.es * sinph0 * sinph0;
  177. proj_parm.B = cosph0 * cosph0;
  178. proj_parm.B = sqrt(1. + par.es * proj_parm.B * proj_parm.B / par.one_es);
  179. proj_parm.A = proj_parm.B * par.k0 * com / con;
  180. D = proj_parm.B * com / (cosph0 * sqrt(con));
  181. if ((F = D * D - 1.) <= 0.)
  182. F = 0.;
  183. else {
  184. F = sqrt(F);
  185. if (par.phi0 < 0.)
  186. F = -F;
  187. }
  188. proj_parm.E = F += D;
  189. proj_parm.E *= math::pow(pj_tsfn(par.phi0, sinph0, par.e), proj_parm.B);
  190. } else {
  191. proj_parm.B = 1. / com;
  192. proj_parm.A = par.k0;
  193. proj_parm.E = D = F = 1.;
  194. }
  195. if (alp || gam) {
  196. if (alp) {
  197. gamma0 = aasin(sin(alpha_c) / D);
  198. if (!gam)
  199. gamma = alpha_c;
  200. } else
  201. alpha_c = aasin(D*sin(gamma0 = gamma));
  202. par.lam0 = lamc - aasin(.5 * (F - 1. / F) *
  203. tan(gamma0)) / proj_parm.B;
  204. } else {
  205. H = math::pow(pj_tsfn(phi1, sin(phi1), par.e), proj_parm.B);
  206. L = math::pow(pj_tsfn(phi2, sin(phi2), par.e), proj_parm.B);
  207. F = proj_parm.E / H;
  208. p = (L - H) / (L + H);
  209. J = proj_parm.E * proj_parm.E;
  210. J = (J - L * H) / (J + L * H);
  211. if ((con = lam1 - lam2) < -pi)
  212. lam2 -= two_pi;
  213. else if (con > pi)
  214. lam2 += two_pi;
  215. par.lam0 = adjlon(.5 * (lam1 + lam2) - atan(
  216. J * tan(.5 * proj_parm.B * (lam1 - lam2)) / p) / proj_parm.B);
  217. gamma0 = atan(2. * sin(proj_parm.B * adjlon(lam1 - par.lam0)) /
  218. (F - 1. / F));
  219. gamma = alpha_c = aasin(D * sin(gamma0));
  220. }
  221. proj_parm.singam = sin(gamma0);
  222. proj_parm.cosgam = cos(gamma0);
  223. proj_parm.sinrot = sin(gamma);
  224. proj_parm.cosrot = cos(gamma);
  225. proj_parm.BrA = 1. / (proj_parm.ArB = proj_parm.A * (proj_parm.rB = 1. / proj_parm.B));
  226. proj_parm.AB = proj_parm.A * proj_parm.B;
  227. if (no_off)
  228. proj_parm.u_0 = 0;
  229. else {
  230. proj_parm.u_0 = fabs(proj_parm.ArB * atan(sqrt(D * D - 1.) / cos(alpha_c)));
  231. if (par.phi0 < 0.)
  232. proj_parm.u_0 = - proj_parm.u_0;
  233. }
  234. F = 0.5 * gamma0;
  235. proj_parm.v_pole_n = proj_parm.ArB * log(tan(fourth_pi - F));
  236. proj_parm.v_pole_s = proj_parm.ArB * log(tan(fourth_pi + F));
  237. }
  238. }} // namespace detail::omerc
  239. #endif // doxygen
  240. /*!
  241. \brief Oblique Mercator projection
  242. \ingroup projections
  243. \tparam Geographic latlong point type
  244. \tparam Cartesian xy point type
  245. \tparam Parameters parameter type
  246. \par Projection characteristics
  247. - Cylindrical
  248. - Spheroid
  249. - Ellipsoid
  250. \par Projection parameters
  251. - no_rot: No rotation
  252. - alpha: Alpha (degrees)
  253. - gamma: Gamma (degrees)
  254. - no_off: Only for compatibility with libproj, proj4 (string)
  255. - lonc: Longitude (only used if alpha (or gamma) is specified) (degrees)
  256. - lon_1 (degrees)
  257. - lat_1: Latitude of first standard parallel (degrees)
  258. - lon_2 (degrees)
  259. - lat_2: Latitude of second standard parallel (degrees)
  260. - no_uoff (string)
  261. \par Example
  262. \image html ex_omerc.gif
  263. */
  264. template <typename T, typename Parameters>
  265. struct omerc_ellipsoid : public detail::omerc::base_omerc_ellipsoid<T, Parameters>
  266. {
  267. template <typename Params>
  268. inline omerc_ellipsoid(Params const& params, Parameters & par)
  269. {
  270. detail::omerc::setup_omerc(params, par, this->m_proj_parm);
  271. }
  272. };
  273. #ifndef DOXYGEN_NO_DETAIL
  274. namespace detail
  275. {
  276. // Static projection
  277. BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION_FI(srs::spar::proj_omerc, omerc_ellipsoid)
  278. // Factory entry(s)
  279. BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_ENTRY_FI(omerc_entry, omerc_ellipsoid)
  280. BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_INIT_BEGIN(omerc_init)
  281. {
  282. BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_INIT_ENTRY(omerc, omerc_entry)
  283. }
  284. } // namespace detail
  285. #endif // doxygen
  286. } // namespace projections
  287. }} // namespace boost::geometry
  288. #endif // BOOST_GEOMETRY_PROJECTIONS_OMERC_HPP