// Boost.Geometry // Copyright (c) 2018 Adeel Ahmad, Islamabad, Pakistan. // Contributed and/or modified by Adeel Ahmad, as part of Google Summer of Code 2018 program. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_STRATEGIES_GEOGRAPHIC_KARNEY_HPP #define BOOST_GEOMETRY_STRATEGIES_GEOGRAPHIC_KARNEY_HPP #include #include namespace boost { namespace geometry { namespace strategy { namespace distance { /*! \brief The solution of the inverse problem of geodesics on latlong coordinates, after Karney (2011). \ingroup distance \tparam Spheroid The reference spheroid model \tparam CalculationType \tparam_calculation \author See - Charles F.F Karney, Algorithms for geodesics, 2011 https://arxiv.org/pdf/1109.4448.pdf */ template < typename Spheroid = srs::spheroid, typename CalculationType = void > class karney : public strategy::distance::geographic < strategy::karney, Spheroid, CalculationType > { typedef strategy::distance::geographic < strategy::karney, Spheroid, CalculationType > base_type; public: inline karney() : base_type() {} explicit inline karney(Spheroid const& spheroid) : base_type(spheroid) {} }; #ifndef DOXYGEN_NO_STRATEGY_SPECIALIZATIONS namespace services { template struct tag > { typedef strategy_tag_distance_point_point type; }; template struct return_type, P1, P2> : karney::template calculation_type {}; template struct comparable_type > { typedef karney type; }; template struct get_comparable > { static inline karney apply(karney const& input) { return input; } }; template struct result_from_distance, P1, P2 > { template static inline typename return_type, P1, P2>::type apply(karney const& , T const& value) { return value; } }; } // namespace services #endif // DOXYGEN_NO_STRATEGY_SPECIALIZATIONS }} // namespace strategy::distance }} // namespace boost::geometry #endif // BOOST_GEOMETRY_STRATEGIES_GEOGRAPHIC_KARNEY_HPP