123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- // Boost.Geometry
- // Copyright (c) 2021, Oracle and/or its affiliates.
- // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
- // Licensed under the Boost Software License version 1.0.
- // http://www.boost.org/users/license.html
- #ifndef BOOST_GEOMETRY_STRATEGIES_DISCRETE_DISTANCE_GEOGRAPHIC_HPP
- #define BOOST_GEOMETRY_STRATEGIES_DISCRETE_DISTANCE_GEOGRAPHIC_HPP
- #include <boost/geometry/strategies/detail.hpp>
- #include <boost/geometry/strategies/discrete_distance/services.hpp>
- #include <boost/geometry/strategies/distance/comparable.hpp>
- #include <boost/geometry/strategies/distance/detail.hpp>
- #include <boost/geometry/strategies/geographic/distance.hpp>
- // TODO - for backwards compatibility, remove?
- #include <boost/geometry/strategies/geographic/distance_andoyer.hpp>
- #include <boost/geometry/strategies/geographic/distance_thomas.hpp>
- #include <boost/geometry/strategies/geographic/distance_vincenty.hpp>
- namespace boost { namespace geometry
- {
- namespace strategies { namespace discrete_distance
- {
- template
- <
- typename FormulaPolicy = strategy::andoyer,
- typename Spheroid = srs::spheroid<double>,
- typename CalculationType = void
- >
- class geographic
- : public strategies::detail::geographic_base<Spheroid>
- {
- using base_t = strategies::detail::geographic_base<Spheroid>;
- public:
- geographic() = default;
- explicit geographic(Spheroid const& spheroid)
- : base_t(spheroid)
- {}
- template <typename Geometry1, typename Geometry2>
- auto distance(Geometry1 const&, Geometry2 const&,
- distance::detail::enable_if_pp_t<Geometry1, Geometry2> * = nullptr) const
- {
- return strategy::distance::geographic
- <
- FormulaPolicy, Spheroid, CalculationType
- >(base_t::m_spheroid);
- }
- };
- namespace services
- {
- template <typename Geometry1, typename Geometry2>
- struct default_strategy<Geometry1, Geometry2, geographic_tag, geographic_tag>
- {
- using type = strategies::discrete_distance::geographic<>;
- };
- template <typename FP, typename S, typename CT>
- struct strategy_converter<strategy::distance::geographic<FP, S, CT> >
- {
- static auto get(strategy::distance::geographic<FP, S, CT> const& s)
- {
- return strategies::discrete_distance::geographic<FP, S, CT>(s.model());
- }
- };
- // TODO - for backwards compatibility, remove?
- template <typename S, typename CT>
- struct strategy_converter<strategy::distance::andoyer<S, CT> >
- {
- static auto get(strategy::distance::andoyer<S, CT> const& s)
- {
- return strategies::discrete_distance::geographic<strategy::andoyer, S, CT>(s.model());
- }
- };
- // TODO - for backwards compatibility, remove?
- template <typename S, typename CT>
- struct strategy_converter<strategy::distance::thomas<S, CT> >
- {
- static auto get(strategy::distance::thomas<S, CT> const& s)
- {
- return strategies::discrete_distance::geographic<strategy::thomas, S, CT>(s.model());
- }
- };
- // TODO - for backwards compatibility, remove?
- template <typename S, typename CT>
- struct strategy_converter<strategy::distance::vincenty<S, CT> >
- {
- static auto get(strategy::distance::vincenty<S, CT> const& s)
- {
- return strategies::discrete_distance::geographic<strategy::vincenty, S, CT>(s.model());
- }
- };
- } // namespace services
- }} // namespace strategies::discrete_distance
- }} // namespace boost::geometry
- #endif // BOOST_GEOMETRY_STRATEGIES_DISCRETE_DISTANCE_GEOGRAPHIC_HPP
|