123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_GEOGRAPHIC_BUFFER_POINT_CIRCLE_HPP
- #define BOOST_GEOMETRY_STRATEGIES_GEOGRAPHIC_BUFFER_POINT_CIRCLE_HPP
- #include <cstddef>
- #include <boost/range/value_type.hpp>
- #include <boost/geometry/core/radian_access.hpp>
- #include <boost/geometry/srs/spheroid.hpp>
- #include <boost/geometry/strategies/buffer.hpp>
- #include <boost/geometry/strategies/geographic/buffer_helper.hpp>
- #include <boost/geometry/strategies/geographic/parameters.hpp>
- #include <boost/geometry/util/math.hpp>
- #include <boost/geometry/util/select_calculation_type.hpp>
- namespace boost { namespace geometry
- {
- namespace strategy { namespace buffer
- {
- template
- <
- typename FormulaPolicy = strategy::andoyer,
- typename Spheroid = srs::spheroid<double>,
- typename CalculationType = void
- >
- class geographic_point_circle
- {
- public :
-
-
-
- explicit inline geographic_point_circle(Spheroid const& spheroid,
- std::size_t count = default_points_per_circle)
- : m_spheroid(spheroid)
- , m_count(get_point_count_for_circle(count))
- {}
-
-
- explicit inline geographic_point_circle(std::size_t count = default_points_per_circle)
- : m_count(get_point_count_for_circle(count))
- {}
- #ifndef DOXYGEN_SHOULD_SKIP_THIS
-
- template
- <
- typename Point,
- typename DistanceStrategy,
- typename RangeOut
- >
- inline void apply(Point const& point,
- DistanceStrategy const& distance_strategy,
- RangeOut& range_out) const
- {
- using calc_t = typename select_calculation_type
- <
- Point,
- typename boost::range_value<RangeOut>::type,
- CalculationType
- >::type;
- using helper = geographic_buffer_helper<FormulaPolicy, calc_t>;
- calc_t const lon_rad = get_as_radian<0>(point);
- calc_t const lat_rad = get_as_radian<1>(point);
- calc_t const buffer_distance = distance_strategy.apply(point,
- point, strategy::buffer::buffer_side_left);
- calc_t const two_pi = geometry::math::two_pi<calc_t>();
- calc_t const pi = geometry::math::pi<calc_t>();
- calc_t const diff = two_pi / calc_t(m_count);
- calc_t angle = -pi;
- for (std::size_t i = 0; i < m_count; i++, angle += diff)
- {
-
- calc_t const eps = angle == 0 ? 1.0e-10 : 0.0;
- helper::append_point(lon_rad, lat_rad, buffer_distance, angle + eps, m_spheroid, range_out);
- }
- {
-
- auto const p = range_out.front();
- range_out.push_back(p);
- }
- }
- #endif
- private :
- Spheroid m_spheroid;
- std::size_t m_count;
- };
- }}
- }}
- #endif
|