12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_BUFFER_GEOGRAPHIC_HPP
- #define BOOST_GEOMETRY_STRATEGIES_BUFFER_GEOGRAPHIC_HPP
- #include <boost/geometry/strategies/buffer/services.hpp>
- #include <boost/geometry/strategies/distance/geographic.hpp>
- namespace boost { namespace geometry
- {
- namespace strategies { namespace buffer
- {
- template
- <
- typename FormulaPolicy = strategy::andoyer,
- typename Spheroid = srs::spheroid<double>,
- typename CalculationType = void
- >
- class geographic
- : public strategies::distance::geographic<FormulaPolicy, Spheroid, CalculationType>
- {
- using base_t = strategies::distance::geographic<FormulaPolicy, Spheroid, CalculationType>;
- public:
- geographic() = default;
- explicit geographic(Spheroid const& spheroid)
- : base_t(spheroid)
- {}
- };
- namespace services
- {
- template <typename Geometry>
- struct default_strategy<Geometry, geographic_tag>
- {
- using type = strategies::buffer::geographic<>;
- };
- }
- }}
- }}
- #endif
|