// Boost.Geometry // Copyright (c) 2021-2022, 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_STRATEGY_GEOGRAPHIC_ENVELOPE_RANGE_HPP #define BOOST_GEOMETRY_STRATEGY_GEOGRAPHIC_ENVELOPE_RANGE_HPP #include #include #include // Get rid of this dependency? #include namespace boost { namespace geometry { namespace strategy { namespace envelope { template < typename FormulaPolicy = strategy::andoyer, typename Spheroid = geometry::srs::spheroid, typename CalculationType = void > class geographic_linestring { public: using model_type = Spheroid; geographic_linestring() : m_spheroid() {} explicit geographic_linestring(Spheroid const& spheroid) : m_spheroid(spheroid) {} template void apply(Range const& range, Box& mbr) const { auto const envelope_s = envelope::geographic_segment < FormulaPolicy, Spheroid, CalculationType >(m_spheroid); auto const expand_s = expand::geographic_segment < FormulaPolicy, Spheroid, CalculationType >(m_spheroid); detail::spheroidal_linestring(range, mbr, envelope_s, expand_s); } Spheroid model() const { return m_spheroid; } private: Spheroid m_spheroid; }; template < typename FormulaPolicy = strategy::andoyer, typename Spheroid = geometry::srs::spheroid, typename CalculationType = void > class geographic_ring { public: using model_type = Spheroid; geographic_ring() : m_spheroid() {} explicit geographic_ring(Spheroid const& spheroid) : m_spheroid(spheroid) {} template void apply(Range const& range, Box& mbr) const { auto const envelope_s = envelope::geographic_segment < FormulaPolicy, Spheroid, CalculationType >(m_spheroid); auto const expand_s = expand::geographic_segment < FormulaPolicy, Spheroid, CalculationType >(m_spheroid); auto const within_s = within::detail::spherical_winding_base < envelope::detail::side_of_pole, CalculationType >(); detail::spheroidal_ring(range, mbr, envelope_s, expand_s, within_s); } Spheroid model() const { return m_spheroid; } private: Spheroid m_spheroid; }; }} // namespace strategy::envelope }} //namepsace boost::geometry #endif // BOOST_GEOMETRY_STRATEGY_GEOGRAPHIC_ENVELOPE_RANGE_HPP