length.hpp 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
  5. // This file was modified by Oracle on 2014, 2015.
  6. // Modifications copyright (c) 2014-2015, Oracle and/or its affiliates.
  7. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  8. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  9. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  10. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  11. // Use, modification and distribution is subject to the Boost Software License,
  12. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  13. // http://www.boost.org/LICENSE_1_0.txt)
  14. #ifndef BOOST_GEOMETRY_ALGORITHMS_LENGTH_HPP
  15. #define BOOST_GEOMETRY_ALGORITHMS_LENGTH_HPP
  16. #include <iterator>
  17. #include <boost/concept_check.hpp>
  18. #include <boost/core/ignore_unused.hpp>
  19. #include <boost/mpl/fold.hpp>
  20. #include <boost/mpl/greater.hpp>
  21. #include <boost/mpl/if.hpp>
  22. #include <boost/mpl/insert.hpp>
  23. #include <boost/mpl/int.hpp>
  24. #include <boost/mpl/set.hpp>
  25. #include <boost/mpl/size.hpp>
  26. #include <boost/mpl/transform.hpp>
  27. #include <boost/range/begin.hpp>
  28. #include <boost/range/end.hpp>
  29. #include <boost/range/iterator.hpp>
  30. #include <boost/range/value_type.hpp>
  31. #include <boost/variant/apply_visitor.hpp>
  32. #include <boost/variant/static_visitor.hpp>
  33. #include <boost/variant/variant_fwd.hpp>
  34. #include <boost/geometry/core/cs.hpp>
  35. #include <boost/geometry/core/closure.hpp>
  36. #include <boost/geometry/core/tags.hpp>
  37. #include <boost/geometry/geometries/concepts/check.hpp>
  38. #include <boost/geometry/algorithms/assign.hpp>
  39. #include <boost/geometry/algorithms/detail/calculate_null.hpp>
  40. #include <boost/geometry/algorithms/detail/multi_sum.hpp>
  41. // #include <boost/geometry/algorithms/detail/throw_on_empty_input.hpp>
  42. #include <boost/geometry/views/closeable_view.hpp>
  43. #include <boost/geometry/strategies/distance.hpp>
  44. #include <boost/geometry/strategies/default_length_result.hpp>
  45. namespace boost { namespace geometry
  46. {
  47. #ifndef DOXYGEN_NO_DETAIL
  48. namespace detail { namespace length
  49. {
  50. template<typename Segment>
  51. struct segment_length
  52. {
  53. template <typename Strategy>
  54. static inline typename default_length_result<Segment>::type apply(
  55. Segment const& segment, Strategy const& strategy)
  56. {
  57. boost::ignore_unused(strategy);
  58. typedef typename point_type<Segment>::type point_type;
  59. point_type p1, p2;
  60. geometry::detail::assign_point_from_index<0>(segment, p1);
  61. geometry::detail::assign_point_from_index<1>(segment, p2);
  62. return strategy.apply(p1, p2);
  63. }
  64. };
  65. /*!
  66. \brief Internal, calculates length of a linestring using iterator pairs and
  67. specified strategy
  68. \note for_each could be used here, now that point_type is changed by boost
  69. range iterator
  70. */
  71. template<typename Range, closure_selector Closure>
  72. struct range_length
  73. {
  74. typedef typename default_length_result<Range>::type return_type;
  75. template <typename Strategy>
  76. static inline return_type apply(
  77. Range const& range, Strategy const& strategy)
  78. {
  79. boost::ignore_unused(strategy);
  80. typedef typename closeable_view<Range const, Closure>::type view_type;
  81. typedef typename boost::range_iterator
  82. <
  83. view_type const
  84. >::type iterator_type;
  85. return_type sum = return_type();
  86. view_type view(range);
  87. iterator_type it = boost::begin(view), end = boost::end(view);
  88. if(it != end)
  89. {
  90. for(iterator_type previous = it++;
  91. it != end;
  92. ++previous, ++it)
  93. {
  94. // Add point-point distance using the return type belonging
  95. // to strategy
  96. sum += strategy.apply(*previous, *it);
  97. }
  98. }
  99. return sum;
  100. }
  101. };
  102. }} // namespace detail::length
  103. #endif // DOXYGEN_NO_DETAIL
  104. #ifndef DOXYGEN_NO_DISPATCH
  105. namespace dispatch
  106. {
  107. template <typename Geometry, typename Tag = typename tag<Geometry>::type>
  108. struct length : detail::calculate_null
  109. {
  110. typedef typename default_length_result<Geometry>::type return_type;
  111. template <typename Strategy>
  112. static inline return_type apply(Geometry const& geometry, Strategy const& strategy)
  113. {
  114. return calculate_null::apply<return_type>(geometry, strategy);
  115. }
  116. };
  117. template <typename Geometry>
  118. struct length<Geometry, linestring_tag>
  119. : detail::length::range_length<Geometry, closed>
  120. {};
  121. // RING: length is currently 0; it might be argued that it is the "perimeter"
  122. template <typename Geometry>
  123. struct length<Geometry, segment_tag>
  124. : detail::length::segment_length<Geometry>
  125. {};
  126. template <typename MultiLinestring>
  127. struct length<MultiLinestring, multi_linestring_tag> : detail::multi_sum
  128. {
  129. template <typename Strategy>
  130. static inline typename default_length_result<MultiLinestring>::type
  131. apply(MultiLinestring const& multi, Strategy const& strategy)
  132. {
  133. return multi_sum::apply
  134. <
  135. typename default_length_result<MultiLinestring>::type,
  136. detail::length::range_length
  137. <
  138. typename boost::range_value<MultiLinestring>::type,
  139. closed // no need to close it explicitly
  140. >
  141. >(multi, strategy);
  142. }
  143. };
  144. } // namespace dispatch
  145. #endif // DOXYGEN_NO_DISPATCH
  146. namespace resolve_variant {
  147. template <typename Geometry>
  148. struct length
  149. {
  150. template <typename Strategy>
  151. static inline typename default_length_result<Geometry>::type
  152. apply(Geometry const& geometry, Strategy const& strategy)
  153. {
  154. return dispatch::length<Geometry>::apply(geometry, strategy);
  155. }
  156. };
  157. template <BOOST_VARIANT_ENUM_PARAMS(typename T)>
  158. struct length<boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
  159. {
  160. typedef typename default_length_result
  161. <
  162. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>
  163. >::type result_type;
  164. template <typename Strategy>
  165. struct visitor
  166. : static_visitor<result_type>
  167. {
  168. Strategy const& m_strategy;
  169. visitor(Strategy const& strategy)
  170. : m_strategy(strategy)
  171. {}
  172. template <typename Geometry>
  173. inline typename default_length_result<Geometry>::type
  174. operator()(Geometry const& geometry) const
  175. {
  176. return length<Geometry>::apply(geometry, m_strategy);
  177. }
  178. };
  179. template <typename Strategy>
  180. static inline result_type apply(
  181. variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry,
  182. Strategy const& strategy
  183. )
  184. {
  185. return boost::apply_visitor(visitor<Strategy>(strategy), geometry);
  186. }
  187. };
  188. } // namespace resolve_variant
  189. /*!
  190. \brief \brief_calc{length}
  191. \ingroup length
  192. \details \details_calc{length, length (the sum of distances between consecutive points)}. \details_default_strategy
  193. \tparam Geometry \tparam_geometry
  194. \param geometry \param_geometry
  195. \return \return_calc{length}
  196. \qbk{[include reference/algorithms/length.qbk]}
  197. \qbk{[length] [length_output]}
  198. */
  199. template<typename Geometry>
  200. inline typename default_length_result<Geometry>::type
  201. length(Geometry const& geometry)
  202. {
  203. concept::check<Geometry const>();
  204. // detail::throw_on_empty_input(geometry);
  205. // TODO put this into a resolve_strategy stage
  206. typedef typename strategy::distance::services::default_strategy
  207. <
  208. point_tag, point_tag, typename point_type<Geometry>::type
  209. >::type strategy_type;
  210. return resolve_variant::length<Geometry>::apply(geometry, strategy_type());
  211. }
  212. /*!
  213. \brief \brief_calc{length} \brief_strategy
  214. \ingroup length
  215. \details \details_calc{length, length (the sum of distances between consecutive points)} \brief_strategy. \details_strategy_reasons
  216. \tparam Geometry \tparam_geometry
  217. \tparam Strategy \tparam_strategy{distance}
  218. \param geometry \param_geometry
  219. \param strategy \param_strategy{distance}
  220. \return \return_calc{length}
  221. \qbk{distinguish,with strategy}
  222. \qbk{[include reference/algorithms/length.qbk]}
  223. \qbk{[length_with_strategy] [length_with_strategy_output]}
  224. */
  225. template<typename Geometry, typename Strategy>
  226. inline typename default_length_result<Geometry>::type
  227. length(Geometry const& geometry, Strategy const& strategy)
  228. {
  229. concept::check<Geometry const>();
  230. // detail::throw_on_empty_input(geometry);
  231. return resolve_variant::length<Geometry>::apply(geometry, strategy);
  232. }
  233. }} // namespace boost::geometry
  234. #endif // BOOST_GEOMETRY_ALGORITHMS_LENGTH_HPP