]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/geometry/srs/projections/proj/eck4.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / boost / geometry / srs / projections / proj / eck4.hpp
1 #ifndef BOOST_GEOMETRY_PROJECTIONS_ECK4_HPP
2 #define BOOST_GEOMETRY_PROJECTIONS_ECK4_HPP
3
4 // Boost.Geometry - extensions-gis-projections (based on PROJ4)
5 // This file is automatically generated. DO NOT EDIT.
6
7 // Copyright (c) 2008-2015 Barend Gehrels, Amsterdam, the Netherlands.
8
9 // This file was modified by Oracle on 2017.
10 // Modifications copyright (c) 2017, Oracle and/or its affiliates.
11 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle.
12
13 // Use, modification and distribution is subject to the Boost Software License,
14 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15 // http://www.boost.org/LICENSE_1_0.txt)
16
17 // This file is converted from PROJ4, http://trac.osgeo.org/proj
18 // PROJ4 is originally written by Gerald Evenden (then of the USGS)
19 // PROJ4 is maintained by Frank Warmerdam
20 // PROJ4 is converted to Boost.Geometry by Barend Gehrels
21
22 // Last updated version of proj: 4.9.1
23
24 // Original copyright notice:
25
26 // Permission is hereby granted, free of charge, to any person obtaining a
27 // copy of this software and associated documentation files (the "Software"),
28 // to deal in the Software without restriction, including without limitation
29 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
30 // and/or sell copies of the Software, and to permit persons to whom the
31 // Software is furnished to do so, subject to the following conditions:
32
33 // The above copyright notice and this permission notice shall be included
34 // in all copies or substantial portions of the Software.
35
36 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
37 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
39 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
40 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
41 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
42 // DEALINGS IN THE SOFTWARE.
43
44 #include <boost/geometry/srs/projections/impl/base_static.hpp>
45 #include <boost/geometry/srs/projections/impl/base_dynamic.hpp>
46 #include <boost/geometry/srs/projections/impl/projects.hpp>
47 #include <boost/geometry/srs/projections/impl/factory_entry.hpp>
48 #include <boost/geometry/srs/projections/impl/aasincos.hpp>
49
50 namespace boost { namespace geometry
51 {
52
53 namespace srs { namespace par4
54 {
55 struct eck4 {};
56
57 }} //namespace srs::par4
58
59 namespace projections
60 {
61 #ifndef DOXYGEN_NO_DETAIL
62 namespace detail { namespace eck4
63 {
64
65 static const double C_x = .42223820031577120149;
66 static const double C_y = 1.32650042817700232218;
67 static const double RC_y = .75386330736002178205;
68 static const double C_p = 3.57079632679489661922;
69 static const double RC_p = .28004957675577868795;
70 static const double EPS = 1e-7;
71 static const int NITER = 6;
72
73 // template class, using CRTP to implement forward/inverse
74 template <typename CalculationType, typename Parameters>
75 struct base_eck4_spheroid : public base_t_fi<base_eck4_spheroid<CalculationType, Parameters>,
76 CalculationType, Parameters>
77 {
78
79 typedef CalculationType geographic_type;
80 typedef CalculationType cartesian_type;
81
82
83 inline base_eck4_spheroid(const Parameters& par)
84 : base_t_fi<base_eck4_spheroid<CalculationType, Parameters>,
85 CalculationType, Parameters>(*this, par) {}
86
87 // FORWARD(s_forward) spheroid
88 // Project coordinates from geographic (lon, lat) to cartesian (x, y)
89 inline void fwd(geographic_type& lp_lon, geographic_type& lp_lat, cartesian_type& xy_x, cartesian_type& xy_y) const
90 {
91 CalculationType p, V, s, c;
92 int i;
93
94 p = C_p * sin(lp_lat);
95 V = lp_lat * lp_lat;
96 lp_lat *= 0.895168 + V * ( 0.0218849 + V * 0.00826809 );
97 for (i = NITER; i ; --i) {
98 c = cos(lp_lat);
99 s = sin(lp_lat);
100 lp_lat -= V = (lp_lat + s * (c + 2.) - p) /
101 (1. + c * (c + 2.) - s * s);
102 if (fabs(V) < EPS)
103 break;
104 }
105 if (!i) {
106 xy_x = C_x * lp_lon;
107 xy_y = lp_lat < 0. ? -C_y : C_y;
108 } else {
109 xy_x = C_x * lp_lon * (1. + cos(lp_lat));
110 xy_y = C_y * sin(lp_lat);
111 }
112 }
113
114 // INVERSE(s_inverse) spheroid
115 // Project coordinates from cartesian (x, y) to geographic (lon, lat)
116 inline void inv(cartesian_type& xy_x, cartesian_type& xy_y, geographic_type& lp_lon, geographic_type& lp_lat) const
117 {
118 CalculationType c;
119
120 lp_lat = aasin(xy_y / C_y);
121 lp_lon = xy_x / (C_x * (1. + (c = cos(lp_lat))));
122 lp_lat = aasin((lp_lat + sin(lp_lat) * (c + 2.)) / C_p);
123 }
124
125 static inline std::string get_name()
126 {
127 return "eck4_spheroid";
128 }
129
130 };
131
132 // Eckert IV
133 template <typename Parameters>
134 inline void setup_eck4(Parameters& par)
135 {
136 par.es = 0.;
137 }
138
139 }} // namespace detail::eck4
140 #endif // doxygen
141
142 /*!
143 \brief Eckert IV projection
144 \ingroup projections
145 \tparam Geographic latlong point type
146 \tparam Cartesian xy point type
147 \tparam Parameters parameter type
148 \par Projection characteristics
149 - Pseudocylindrical
150 - Spheroid
151 \par Example
152 \image html ex_eck4.gif
153 */
154 template <typename CalculationType, typename Parameters>
155 struct eck4_spheroid : public detail::eck4::base_eck4_spheroid<CalculationType, Parameters>
156 {
157 inline eck4_spheroid(const Parameters& par) : detail::eck4::base_eck4_spheroid<CalculationType, Parameters>(par)
158 {
159 detail::eck4::setup_eck4(this->m_par);
160 }
161 };
162
163 #ifndef DOXYGEN_NO_DETAIL
164 namespace detail
165 {
166
167 // Static projection
168 BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION(srs::par4::eck4, eck4_spheroid, eck4_spheroid)
169
170 // Factory entry(s)
171 template <typename CalculationType, typename Parameters>
172 class eck4_entry : public detail::factory_entry<CalculationType, Parameters>
173 {
174 public :
175 virtual base_v<CalculationType, Parameters>* create_new(const Parameters& par) const
176 {
177 return new base_v_fi<eck4_spheroid<CalculationType, Parameters>, CalculationType, Parameters>(par);
178 }
179 };
180
181 template <typename CalculationType, typename Parameters>
182 inline void eck4_init(detail::base_factory<CalculationType, Parameters>& factory)
183 {
184 factory.add_to_factory("eck4", new eck4_entry<CalculationType, Parameters>);
185 }
186
187 } // namespace detail
188 #endif // doxygen
189
190 } // namespace projections
191
192 }} // namespace boost::geometry
193
194 #endif // BOOST_GEOMETRY_PROJECTIONS_ECK4_HPP
195