within.hpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
  5. // This file was modified by Oracle on 2013, 2014.
  6. // Modifications copyright (c) 2013, 2014 Oracle and/or its affiliates.
  7. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  8. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  9. // Use, modification and distribution is subject to the Boost Software License,
  10. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  11. // http://www.boost.org/LICENSE_1_0.txt)
  12. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  13. #ifndef BOOST_GEOMETRY_ALGORITHMS_WITHIN_HPP
  14. #define BOOST_GEOMETRY_ALGORITHMS_WITHIN_HPP
  15. #include <cstddef>
  16. #include <boost/concept_check.hpp>
  17. #include <boost/range.hpp>
  18. #include <boost/variant/apply_visitor.hpp>
  19. #include <boost/variant/static_visitor.hpp>
  20. #include <boost/variant/variant_fwd.hpp>
  21. #include <boost/geometry/algorithms/make.hpp>
  22. #include <boost/geometry/algorithms/not_implemented.hpp>
  23. #include <boost/geometry/core/access.hpp>
  24. #include <boost/geometry/core/closure.hpp>
  25. #include <boost/geometry/core/cs.hpp>
  26. #include <boost/geometry/core/exterior_ring.hpp>
  27. #include <boost/geometry/core/interior_rings.hpp>
  28. #include <boost/geometry/core/point_order.hpp>
  29. #include <boost/geometry/core/ring_type.hpp>
  30. #include <boost/geometry/core/interior_rings.hpp>
  31. #include <boost/geometry/core/tags.hpp>
  32. #include <boost/geometry/geometries/concepts/check.hpp>
  33. #include <boost/geometry/strategies/concepts/within_concept.hpp>
  34. #include <boost/geometry/strategies/default_strategy.hpp>
  35. #include <boost/geometry/strategies/within.hpp>
  36. #include <boost/geometry/util/math.hpp>
  37. #include <boost/geometry/util/order_as_direction.hpp>
  38. #include <boost/geometry/views/closeable_view.hpp>
  39. #include <boost/geometry/views/reversible_view.hpp>
  40. #include <boost/geometry/algorithms/detail/within/point_in_geometry.hpp>
  41. #include <boost/geometry/algorithms/detail/overlay/get_turns.hpp>
  42. #include <boost/geometry/algorithms/detail/overlay/do_reverse.hpp>
  43. #include <deque>
  44. namespace boost { namespace geometry
  45. {
  46. #ifndef DOXYGEN_NO_DETAIL
  47. namespace detail { namespace within {
  48. struct use_point_in_geometry
  49. {
  50. template <typename Geometry1, typename Geometry2, typename Strategy>
  51. static inline bool apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Strategy const& strategy)
  52. {
  53. return detail::within::point_in_geometry(geometry1, geometry2, strategy) == 1;
  54. }
  55. };
  56. struct use_relate
  57. {
  58. template <typename Geometry1, typename Geometry2, typename Strategy>
  59. static inline bool apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Strategy const& /*strategy*/)
  60. {
  61. return Strategy::apply(geometry1, geometry2);
  62. }
  63. };
  64. }} // namespace detail::within
  65. #endif // DOXYGEN_NO_DETAIL
  66. #ifndef DOXYGEN_NO_DISPATCH
  67. namespace dispatch
  68. {
  69. template
  70. <
  71. typename Geometry1,
  72. typename Geometry2,
  73. typename Tag1 = typename tag<Geometry1>::type,
  74. typename Tag2 = typename tag<Geometry2>::type
  75. >
  76. struct within
  77. : not_implemented<Tag1, Tag2>
  78. {};
  79. template <typename Point, typename Box>
  80. struct within<Point, Box, point_tag, box_tag>
  81. {
  82. template <typename Strategy>
  83. static inline bool apply(Point const& point, Box const& box, Strategy const& strategy)
  84. {
  85. boost::ignore_unused_variable_warning(strategy);
  86. return strategy.apply(point, box);
  87. }
  88. };
  89. template <typename Box1, typename Box2>
  90. struct within<Box1, Box2, box_tag, box_tag>
  91. {
  92. template <typename Strategy>
  93. static inline bool apply(Box1 const& box1, Box2 const& box2, Strategy const& strategy)
  94. {
  95. assert_dimension_equal<Box1, Box2>();
  96. boost::ignore_unused_variable_warning(strategy);
  97. return strategy.apply(box1, box2);
  98. }
  99. };
  100. // P/P
  101. template <typename Point1, typename Point2>
  102. struct within<Point1, Point2, point_tag, point_tag>
  103. : public detail::within::use_point_in_geometry
  104. {};
  105. template <typename Point, typename MultiPoint>
  106. struct within<Point, MultiPoint, point_tag, multi_point_tag>
  107. : public detail::within::use_point_in_geometry
  108. {};
  109. // P/L
  110. template <typename Point, typename Segment>
  111. struct within<Point, Segment, point_tag, segment_tag>
  112. : public detail::within::use_point_in_geometry
  113. {};
  114. template <typename Point, typename Linestring>
  115. struct within<Point, Linestring, point_tag, linestring_tag>
  116. : public detail::within::use_point_in_geometry
  117. {};
  118. template <typename Point, typename MultiLinestring>
  119. struct within<Point, MultiLinestring, point_tag, multi_linestring_tag>
  120. : public detail::within::use_point_in_geometry
  121. {};
  122. // P/A
  123. template <typename Point, typename Ring>
  124. struct within<Point, Ring, point_tag, ring_tag>
  125. : public detail::within::use_point_in_geometry
  126. {};
  127. template <typename Point, typename Polygon>
  128. struct within<Point, Polygon, point_tag, polygon_tag>
  129. : public detail::within::use_point_in_geometry
  130. {};
  131. template <typename Point, typename MultiPolygon>
  132. struct within<Point, MultiPolygon, point_tag, multi_polygon_tag>
  133. : public detail::within::use_point_in_geometry
  134. {};
  135. // L/L
  136. template <typename Linestring1, typename Linestring2>
  137. struct within<Linestring1, Linestring2, linestring_tag, linestring_tag>
  138. : public detail::within::use_relate
  139. {};
  140. template <typename Linestring, typename MultiLinestring>
  141. struct within<Linestring, MultiLinestring, linestring_tag, multi_linestring_tag>
  142. : public detail::within::use_relate
  143. {};
  144. template <typename MultiLinestring, typename Linestring>
  145. struct within<MultiLinestring, Linestring, multi_linestring_tag, linestring_tag>
  146. : public detail::within::use_relate
  147. {};
  148. template <typename MultiLinestring1, typename MultiLinestring2>
  149. struct within<MultiLinestring1, MultiLinestring2, multi_linestring_tag, multi_linestring_tag>
  150. : public detail::within::use_relate
  151. {};
  152. // L/A
  153. template <typename Linestring, typename Ring>
  154. struct within<Linestring, Ring, linestring_tag, ring_tag>
  155. : public detail::within::use_relate
  156. {};
  157. template <typename MultiLinestring, typename Ring>
  158. struct within<MultiLinestring, Ring, multi_linestring_tag, ring_tag>
  159. : public detail::within::use_relate
  160. {};
  161. template <typename Linestring, typename Polygon>
  162. struct within<Linestring, Polygon, linestring_tag, polygon_tag>
  163. : public detail::within::use_relate
  164. {};
  165. template <typename MultiLinestring, typename Polygon>
  166. struct within<MultiLinestring, Polygon, multi_linestring_tag, polygon_tag>
  167. : public detail::within::use_relate
  168. {};
  169. template <typename Linestring, typename MultiPolygon>
  170. struct within<Linestring, MultiPolygon, linestring_tag, multi_polygon_tag>
  171. : public detail::within::use_relate
  172. {};
  173. template <typename MultiLinestring, typename MultiPolygon>
  174. struct within<MultiLinestring, MultiPolygon, multi_linestring_tag, multi_polygon_tag>
  175. : public detail::within::use_relate
  176. {};
  177. // A/A
  178. template <typename Ring1, typename Ring2>
  179. struct within<Ring1, Ring2, ring_tag, ring_tag>
  180. : public detail::within::use_relate
  181. {};
  182. template <typename Ring, typename Polygon>
  183. struct within<Ring, Polygon, ring_tag, polygon_tag>
  184. : public detail::within::use_relate
  185. {};
  186. template <typename Polygon, typename Ring>
  187. struct within<Polygon, Ring, polygon_tag, ring_tag>
  188. : public detail::within::use_relate
  189. {};
  190. template <typename Polygon1, typename Polygon2>
  191. struct within<Polygon1, Polygon2, polygon_tag, polygon_tag>
  192. : public detail::within::use_relate
  193. {};
  194. template <typename Ring, typename MultiPolygon>
  195. struct within<Ring, MultiPolygon, ring_tag, multi_polygon_tag>
  196. : public detail::within::use_relate
  197. {};
  198. template <typename MultiPolygon, typename Ring>
  199. struct within<MultiPolygon, Ring, multi_polygon_tag, ring_tag>
  200. : public detail::within::use_relate
  201. {};
  202. template <typename Polygon, typename MultiPolygon>
  203. struct within<Polygon, MultiPolygon, polygon_tag, multi_polygon_tag>
  204. : public detail::within::use_relate
  205. {};
  206. template <typename MultiPolygon, typename Polygon>
  207. struct within<MultiPolygon, Polygon, multi_polygon_tag, polygon_tag>
  208. : public detail::within::use_relate
  209. {};
  210. template <typename MultiPolygon1, typename MultiPolygon2>
  211. struct within<MultiPolygon1, MultiPolygon2, multi_polygon_tag, multi_polygon_tag>
  212. : public detail::within::use_relate
  213. {};
  214. } // namespace dispatch
  215. #endif // DOXYGEN_NO_DISPATCH
  216. namespace resolve_strategy
  217. {
  218. struct within
  219. {
  220. template <typename Geometry1, typename Geometry2, typename Strategy>
  221. static inline bool apply(Geometry1 const& geometry1,
  222. Geometry2 const& geometry2,
  223. Strategy const& strategy)
  224. {
  225. concept::within::check
  226. <
  227. typename tag<Geometry1>::type,
  228. typename tag<Geometry2>::type,
  229. typename tag_cast<typename tag<Geometry2>::type, areal_tag>::type,
  230. Strategy
  231. >();
  232. return dispatch::within<Geometry1, Geometry2>::apply(geometry1, geometry2, strategy);
  233. }
  234. template <typename Geometry1, typename Geometry2>
  235. static inline bool apply(Geometry1 const& geometry1,
  236. Geometry2 const& geometry2,
  237. default_strategy)
  238. {
  239. typedef typename point_type<Geometry1>::type point_type1;
  240. typedef typename point_type<Geometry2>::type point_type2;
  241. typedef typename strategy::within::services::default_strategy
  242. <
  243. typename tag<Geometry1>::type,
  244. typename tag<Geometry2>::type,
  245. typename tag<Geometry1>::type,
  246. typename tag_cast<typename tag<Geometry2>::type, areal_tag>::type,
  247. typename tag_cast
  248. <
  249. typename cs_tag<point_type1>::type, spherical_tag
  250. >::type,
  251. typename tag_cast
  252. <
  253. typename cs_tag<point_type2>::type, spherical_tag
  254. >::type,
  255. Geometry1,
  256. Geometry2
  257. >::type strategy_type;
  258. return apply(geometry1, geometry2, strategy_type());
  259. }
  260. };
  261. } // namespace resolve_strategy
  262. namespace resolve_variant
  263. {
  264. template <typename Geometry1, typename Geometry2>
  265. struct within
  266. {
  267. template <typename Strategy>
  268. static inline bool apply(Geometry1 const& geometry1,
  269. Geometry2 const& geometry2,
  270. Strategy const& strategy)
  271. {
  272. concept::check<Geometry1 const>();
  273. concept::check<Geometry2 const>();
  274. assert_dimension_equal<Geometry1, Geometry2>();
  275. return resolve_strategy::within::apply(geometry1,
  276. geometry2,
  277. strategy);
  278. }
  279. };
  280. template <BOOST_VARIANT_ENUM_PARAMS(typename T), typename Geometry2>
  281. struct within<boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>, Geometry2>
  282. {
  283. template <typename Strategy>
  284. struct visitor: boost::static_visitor<bool>
  285. {
  286. Geometry2 const& m_geometry2;
  287. Strategy const& m_strategy;
  288. visitor(Geometry2 const& geometry2, Strategy const& strategy)
  289. : m_geometry2(geometry2)
  290. , m_strategy(strategy)
  291. {}
  292. template <typename Geometry1>
  293. bool operator()(Geometry1 const& geometry1) const
  294. {
  295. return within<Geometry1, Geometry2>::apply(geometry1,
  296. m_geometry2,
  297. m_strategy);
  298. }
  299. };
  300. template <typename Strategy>
  301. static inline bool
  302. apply(boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry1,
  303. Geometry2 const& geometry2,
  304. Strategy const& strategy)
  305. {
  306. return boost::apply_visitor(visitor<Strategy>(geometry2, strategy),
  307. geometry1);
  308. }
  309. };
  310. template <typename Geometry1, BOOST_VARIANT_ENUM_PARAMS(typename T)>
  311. struct within<Geometry1, boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
  312. {
  313. template <typename Strategy>
  314. struct visitor: boost::static_visitor<bool>
  315. {
  316. Geometry1 const& m_geometry1;
  317. Strategy const& m_strategy;
  318. visitor(Geometry1 const& geometry1, Strategy const& strategy)
  319. : m_geometry1(geometry1)
  320. , m_strategy(strategy)
  321. {}
  322. template <typename Geometry2>
  323. bool operator()(Geometry2 const& geometry2) const
  324. {
  325. return within<Geometry1, Geometry2>::apply(m_geometry1,
  326. geometry2,
  327. m_strategy);
  328. }
  329. };
  330. template <typename Strategy>
  331. static inline bool
  332. apply(Geometry1 const& geometry1,
  333. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry2,
  334. Strategy const& strategy)
  335. {
  336. return boost::apply_visitor(visitor<Strategy>(geometry1, strategy),
  337. geometry2
  338. );
  339. }
  340. };
  341. template <
  342. BOOST_VARIANT_ENUM_PARAMS(typename T1),
  343. BOOST_VARIANT_ENUM_PARAMS(typename T2)
  344. >
  345. struct within<
  346. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T1)>,
  347. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T2)>
  348. >
  349. {
  350. template <typename Strategy>
  351. struct visitor: boost::static_visitor<bool>
  352. {
  353. Strategy const& m_strategy;
  354. visitor(Strategy const& strategy): m_strategy(strategy) {}
  355. template <typename Geometry1, typename Geometry2>
  356. bool operator()(Geometry1 const& geometry1,
  357. Geometry2 const& geometry2) const
  358. {
  359. return within<Geometry1, Geometry2>::apply(geometry1,
  360. geometry2,
  361. m_strategy);
  362. }
  363. };
  364. template <typename Strategy>
  365. static inline bool
  366. apply(boost::variant<BOOST_VARIANT_ENUM_PARAMS(T1)> const& geometry1,
  367. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T2)> const& geometry2,
  368. Strategy const& strategy)
  369. {
  370. return boost::apply_visitor(visitor<Strategy>(strategy),
  371. geometry1,
  372. geometry2);
  373. }
  374. };
  375. }
  376. /*!
  377. \brief \brief_check12{is completely inside}
  378. \ingroup within
  379. \details \details_check12{within, is completely inside}.
  380. \tparam Geometry1 \tparam_geometry
  381. \tparam Geometry2 \tparam_geometry
  382. \param geometry1 \param_geometry which might be within the second geometry
  383. \param geometry2 \param_geometry which might contain the first geometry
  384. \return true if geometry1 is completely contained within geometry2,
  385. else false
  386. \note The default strategy is used for within detection
  387. \qbk{[include reference/algorithms/within.qbk]}
  388. \qbk{
  389. [heading Example]
  390. [within]
  391. [within_output]
  392. }
  393. */
  394. template<typename Geometry1, typename Geometry2>
  395. inline bool within(Geometry1 const& geometry1, Geometry2 const& geometry2)
  396. {
  397. return resolve_variant::within
  398. <
  399. Geometry1,
  400. Geometry2
  401. >::apply(geometry1, geometry2, default_strategy());
  402. }
  403. /*!
  404. \brief \brief_check12{is completely inside} \brief_strategy
  405. \ingroup within
  406. \details \details_check12{within, is completely inside}, \brief_strategy. \details_strategy_reasons
  407. \tparam Geometry1 \tparam_geometry
  408. \tparam Geometry2 \tparam_geometry
  409. \param geometry1 \param_geometry which might be within the second geometry
  410. \param geometry2 \param_geometry which might contain the first geometry
  411. \param strategy strategy to be used
  412. \return true if geometry1 is completely contained within geometry2,
  413. else false
  414. \qbk{distinguish,with strategy}
  415. \qbk{[include reference/algorithms/within.qbk]}
  416. \qbk{
  417. [heading Available Strategies]
  418. \* [link geometry.reference.strategies.strategy_within_winding Winding (coordinate system agnostic)]
  419. \* [link geometry.reference.strategies.strategy_within_franklin Franklin (cartesian)]
  420. \* [link geometry.reference.strategies.strategy_within_crossings_multiply Crossings Multiply (cartesian)]
  421. [heading Example]
  422. [within_strategy]
  423. [within_strategy_output]
  424. }
  425. */
  426. template<typename Geometry1, typename Geometry2, typename Strategy>
  427. inline bool within(Geometry1 const& geometry1, Geometry2 const& geometry2,
  428. Strategy const& strategy)
  429. {
  430. return resolve_variant::within
  431. <
  432. Geometry1,
  433. Geometry2
  434. >::apply(geometry1, geometry2, strategy);
  435. }
  436. }} // namespace boost::geometry
  437. #endif // BOOST_GEOMETRY_ALGORITHMS_WITHIN_HPP