]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/geometry/srs/projections/proj/putp5.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / geometry / srs / projections / proj / putp5.hpp
index 652dca523109e60a3273f316aec6d1feaefab0e3..6601b9dc9e1b7f17cc041b8508675b386ea3fc54 100644 (file)
@@ -1,13 +1,9 @@
-#ifndef BOOST_GEOMETRY_PROJECTIONS_PUTP5_HPP
-#define BOOST_GEOMETRY_PROJECTIONS_PUTP5_HPP
-
-// Boost.Geometry - extensions-gis-projections (based on PROJ4)
-// This file is automatically generated. DO NOT EDIT.
+// Boost.Geometry - gis-projections (based on PROJ4)
 
 // Copyright (c) 2008-2015 Barend Gehrels, Amsterdam, the Netherlands.
 
-// This file was modified by Oracle on 2017.
-// Modifications copyright (c) 2017, Oracle and/or its affiliates.
+// This file was modified by Oracle on 2017, 2018, 2019.
+// Modifications copyright (c) 2017-2019, Oracle and/or its affiliates.
 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle.
 
 // Use, modification and distribution is subject to the Boost Software License,
@@ -19,7 +15,7 @@
 // PROJ4 is maintained by Frank Warmerdam
 // PROJ4 is converted to Boost.Geometry by Barend Gehrels
 
-// Last updated version of proj: 4.9.1
+// Last updated version of proj: 5.0.0
 
 // Original copyright notice:
 
@@ -41,7 +37,8 @@
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 // DEALINGS IN THE SOFTWARE.
 
-#include <boost/core/ignore_unused.hpp>
+#ifndef BOOST_GEOMETRY_PROJECTIONS_PUTP5_HPP
+#define BOOST_GEOMETRY_PROJECTIONS_PUTP5_HPP
 
 #include <boost/geometry/srs/projections/impl/base_static.hpp>
 #include <boost/geometry/srs/projections/impl/base_dynamic.hpp>
 namespace boost { namespace geometry
 {
 
-namespace srs { namespace par4
-{
-    struct putp5 {};
-    struct putp5p {};
-
-}} //namespace srs::par4
-
 namespace projections
 {
     #ifndef DOXYGEN_NO_DETAIL
@@ -73,24 +63,14 @@ namespace projections
                 T    A, B;
             };
 
-            // template class, using CRTP to implement forward/inverse
-            template <typename CalculationType, typename Parameters>
-            struct base_putp5_spheroid : public base_t_fi<base_putp5_spheroid<CalculationType, Parameters>,
-                     CalculationType, Parameters>
+            template <typename T, typename Parameters>
+            struct base_putp5_spheroid
             {
-
-                typedef CalculationType geographic_type;
-                typedef CalculationType cartesian_type;
-
-                par_putp5<CalculationType> m_proj_parm;
-
-                inline base_putp5_spheroid(const Parameters& par)
-                    : base_t_fi<base_putp5_spheroid<CalculationType, Parameters>,
-                     CalculationType, Parameters>(*this, par) {}
+                par_putp5<T> m_proj_parm;
 
                 // FORWARD(s_forward)  spheroid
                 // Project coordinates from geographic (lon, lat) to cartesian (x, y)
-                inline void fwd(geographic_type& lp_lon, geographic_type& lp_lat, cartesian_type& xy_x, cartesian_type& xy_y) const
+                inline void fwd(Parameters const& , T const& lp_lon, T const& lp_lat, T& xy_x, T& xy_y) const
                 {
                     xy_x = C * lp_lon * (this->m_proj_parm.A - this->m_proj_parm.B * sqrt(1. + D * lp_lat * lp_lat));
                     xy_y = C * lp_lat;
@@ -98,7 +78,7 @@ namespace projections
 
                 // INVERSE(s_inverse)  spheroid
                 // Project coordinates from cartesian (x, y) to geographic (lon, lat)
-                inline void inv(cartesian_type& xy_x, cartesian_type& xy_y, geographic_type& lp_lon, geographic_type& lp_lat) const
+                inline void inv(Parameters const& , T const& xy_x, T const& xy_y, T& lp_lon, T& lp_lat) const
                 {
                     lp_lat = xy_y / C;
                     lp_lon = xy_x / (C * (this->m_proj_parm.A - this->m_proj_parm.B * sqrt(1. + D * lp_lat * lp_lat)));
@@ -110,14 +90,7 @@ namespace projections
                 }
 
             };
-
-            template <typename Parameters, typename T>
-            inline void setup(Parameters& par, par_putp5<T>& proj_parm) 
-            {
-                boost::ignore_unused(proj_parm);
-                par.es = 0.;
-            }
-
+            
 
             // Putnins P5
             template <typename Parameters, typename T>
@@ -125,7 +98,8 @@ namespace projections
             {
                 proj_parm.A = 2.;
                 proj_parm.B = 1.;
-                setup(par, proj_parm);
+                
+                par.es = 0.;
             }
 
             // Putnins P5'
@@ -134,7 +108,8 @@ namespace projections
             {
                 proj_parm.A = 1.5;
                 proj_parm.B = 0.5;
-                setup(par, proj_parm);
+                
+                par.es = 0.;
             }
 
     }} // namespace detail::putp5
@@ -152,12 +127,13 @@ namespace projections
         \par Example
         \image html ex_putp5.gif
     */
-    template <typename CalculationType, typename Parameters>
-    struct putp5_spheroid : public detail::putp5::base_putp5_spheroid<CalculationType, Parameters>
+    template <typename T, typename Parameters>
+    struct putp5_spheroid : public detail::putp5::base_putp5_spheroid<T, Parameters>
     {
-        inline putp5_spheroid(const Parameters& par) : detail::putp5::base_putp5_spheroid<CalculationType, Parameters>(par)
+        template <typename Params>
+        inline putp5_spheroid(Params const& , Parameters & par)
         {
-            detail::putp5::setup_putp5(this->m_par, this->m_proj_parm);
+            detail::putp5::setup_putp5(par, this->m_proj_parm);
         }
     };
 
@@ -173,12 +149,13 @@ namespace projections
         \par Example
         \image html ex_putp5p.gif
     */
-    template <typename CalculationType, typename Parameters>
-    struct putp5p_spheroid : public detail::putp5::base_putp5_spheroid<CalculationType, Parameters>
+    template <typename T, typename Parameters>
+    struct putp5p_spheroid : public detail::putp5::base_putp5_spheroid<T, Parameters>
     {
-        inline putp5p_spheroid(const Parameters& par) : detail::putp5::base_putp5_spheroid<CalculationType, Parameters>(par)
+        template <typename Params>
+        inline putp5p_spheroid(Params const& , Parameters & par)
         {
-            detail::putp5::setup_putp5p(this->m_par, this->m_proj_parm);
+            detail::putp5::setup_putp5p(par, this->m_proj_parm);
         }
     };
 
@@ -187,35 +164,17 @@ namespace projections
     {
 
         // Static projection
-        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION(srs::par4::putp5, putp5_spheroid, putp5_spheroid)
-        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION(srs::par4::putp5p, putp5p_spheroid, putp5p_spheroid)
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION_FI(srs::spar::proj_putp5, putp5_spheroid)
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION_FI(srs::spar::proj_putp5p, putp5p_spheroid)
 
         // Factory entry(s)
-        template <typename CalculationType, typename Parameters>
-        class putp5_entry : public detail::factory_entry<CalculationType, Parameters>
-        {
-            public :
-                virtual base_v<CalculationType, Parameters>* create_new(const Parameters& par) const
-                {
-                    return new base_v_fi<putp5_spheroid<CalculationType, Parameters>, CalculationType, Parameters>(par);
-                }
-        };
-
-        template <typename CalculationType, typename Parameters>
-        class putp5p_entry : public detail::factory_entry<CalculationType, Parameters>
-        {
-            public :
-                virtual base_v<CalculationType, Parameters>* create_new(const Parameters& par) const
-                {
-                    return new base_v_fi<putp5p_spheroid<CalculationType, Parameters>, CalculationType, Parameters>(par);
-                }
-        };
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_ENTRY_FI(putp5_entry, putp5_spheroid)
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_ENTRY_FI(putp5p_entry, putp5p_spheroid)
 
-        template <typename CalculationType, typename Parameters>
-        inline void putp5_init(detail::base_factory<CalculationType, Parameters>& factory)
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_INIT_BEGIN(putp5_init)
         {
-            factory.add_to_factory("putp5", new putp5_entry<CalculationType, Parameters>);
-            factory.add_to_factory("putp5p", new putp5p_entry<CalculationType, Parameters>);
+            BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_INIT_ENTRY(putp5, putp5_entry)
+            BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_INIT_ENTRY(putp5p, putp5p_entry)
         }
 
     } // namespace detail