equals.hpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2008-2015 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2009-2015 Mateusz Loskot, London, UK.
  5. // Copyright (c) 2014-2015 Adam Wulkiewicz, Lodz, Poland.
  6. // This file was modified by Oracle on 2014, 2015.
  7. // Modifications copyright (c) 2014-2015 Oracle and/or its affiliates.
  8. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  9. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  10. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  11. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  12. // Use, modification and distribution is subject to the Boost Software License,
  13. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  14. // http://www.boost.org/LICENSE_1_0.txt)
  15. #ifndef BOOST_GEOMETRY_ALGORITHMS_EQUALS_HPP
  16. #define BOOST_GEOMETRY_ALGORITHMS_EQUALS_HPP
  17. #include <cstddef>
  18. #include <vector>
  19. #include <boost/range.hpp>
  20. #include <boost/variant/apply_visitor.hpp>
  21. #include <boost/variant/static_visitor.hpp>
  22. #include <boost/variant/variant_fwd.hpp>
  23. #include <boost/geometry/core/access.hpp>
  24. #include <boost/geometry/core/coordinate_dimension.hpp>
  25. #include <boost/geometry/core/geometry_id.hpp>
  26. #include <boost/geometry/core/reverse_dispatch.hpp>
  27. #include <boost/geometry/core/tags.hpp>
  28. #include <boost/geometry/geometries/concepts/check.hpp>
  29. #include <boost/geometry/algorithms/detail/equals/point_point.hpp>
  30. #include <boost/geometry/algorithms/detail/not.hpp>
  31. #include <boost/geometry/algorithms/not_implemented.hpp>
  32. // For trivial checks
  33. #include <boost/geometry/algorithms/area.hpp>
  34. #include <boost/geometry/algorithms/length.hpp>
  35. #include <boost/geometry/util/math.hpp>
  36. #include <boost/geometry/util/select_coordinate_type.hpp>
  37. #include <boost/geometry/util/select_most_precise.hpp>
  38. #include <boost/geometry/algorithms/detail/equals/collect_vectors.hpp>
  39. #include <boost/geometry/algorithms/relate.hpp>
  40. #include <boost/geometry/algorithms/detail/relate/relate_impl.hpp>
  41. #include <boost/geometry/views/detail/indexed_point_view.hpp>
  42. namespace boost { namespace geometry
  43. {
  44. #ifndef DOXYGEN_NO_DETAIL
  45. namespace detail { namespace equals
  46. {
  47. template
  48. <
  49. std::size_t Dimension,
  50. std::size_t DimensionCount
  51. >
  52. struct box_box
  53. {
  54. template <typename Box1, typename Box2>
  55. static inline bool apply(Box1 const& box1, Box2 const& box2)
  56. {
  57. if (!geometry::math::equals(get<min_corner, Dimension>(box1), get<min_corner, Dimension>(box2))
  58. || !geometry::math::equals(get<max_corner, Dimension>(box1), get<max_corner, Dimension>(box2)))
  59. {
  60. return false;
  61. }
  62. return box_box<Dimension + 1, DimensionCount>::apply(box1, box2);
  63. }
  64. };
  65. template <std::size_t DimensionCount>
  66. struct box_box<DimensionCount, DimensionCount>
  67. {
  68. template <typename Box1, typename Box2>
  69. static inline bool apply(Box1 const& , Box2 const& )
  70. {
  71. return true;
  72. }
  73. };
  74. struct segment_segment
  75. {
  76. template <typename Segment1, typename Segment2>
  77. static inline bool apply(Segment1 const& segment1, Segment2 const& segment2)
  78. {
  79. return equals::equals_point_point(
  80. indexed_point_view<Segment1 const, 0>(segment1),
  81. indexed_point_view<Segment2 const, 0>(segment2) )
  82. ? equals::equals_point_point(
  83. indexed_point_view<Segment1 const, 1>(segment1),
  84. indexed_point_view<Segment2 const, 1>(segment2) )
  85. : ( equals::equals_point_point(
  86. indexed_point_view<Segment1 const, 0>(segment1),
  87. indexed_point_view<Segment2 const, 1>(segment2) )
  88. && equals::equals_point_point(
  89. indexed_point_view<Segment1 const, 1>(segment1),
  90. indexed_point_view<Segment2 const, 0>(segment2) )
  91. );
  92. }
  93. };
  94. struct area_check
  95. {
  96. template <typename Geometry1, typename Geometry2>
  97. static inline bool apply(Geometry1 const& geometry1, Geometry2 const& geometry2)
  98. {
  99. return geometry::math::equals(
  100. geometry::area(geometry1),
  101. geometry::area(geometry2));
  102. }
  103. };
  104. struct length_check
  105. {
  106. template <typename Geometry1, typename Geometry2>
  107. static inline bool apply(Geometry1 const& geometry1, Geometry2 const& geometry2)
  108. {
  109. return geometry::math::equals(
  110. geometry::length(geometry1),
  111. geometry::length(geometry2));
  112. }
  113. };
  114. template <typename TrivialCheck>
  115. struct equals_by_collection
  116. {
  117. template <typename Geometry1, typename Geometry2>
  118. static inline bool apply(Geometry1 const& geometry1, Geometry2 const& geometry2)
  119. {
  120. if (! TrivialCheck::apply(geometry1, geometry2))
  121. {
  122. return false;
  123. }
  124. typedef typename geometry::select_most_precise
  125. <
  126. typename select_coordinate_type
  127. <
  128. Geometry1, Geometry2
  129. >::type,
  130. double
  131. >::type calculation_type;
  132. typedef std::vector<collected_vector<calculation_type> > v;
  133. v c1, c2;
  134. geometry::collect_vectors(c1, geometry1);
  135. geometry::collect_vectors(c2, geometry2);
  136. if (boost::size(c1) != boost::size(c2))
  137. {
  138. return false;
  139. }
  140. std::sort(c1.begin(), c1.end());
  141. std::sort(c2.begin(), c2.end());
  142. // Just check if these vectors are equal.
  143. return std::equal(c1.begin(), c1.end(), c2.begin());
  144. }
  145. };
  146. template<typename Geometry1, typename Geometry2>
  147. struct equals_by_relate
  148. : detail::relate::relate_impl
  149. <
  150. detail::de9im::static_mask_equals_type,
  151. Geometry1,
  152. Geometry2
  153. >
  154. {};
  155. }} // namespace detail::equals
  156. #endif // DOXYGEN_NO_DETAIL
  157. #ifndef DOXYGEN_NO_DISPATCH
  158. namespace dispatch
  159. {
  160. template
  161. <
  162. typename Geometry1,
  163. typename Geometry2,
  164. typename Tag1 = typename tag<Geometry1>::type,
  165. typename Tag2 = typename tag<Geometry2>::type,
  166. std::size_t DimensionCount = dimension<Geometry1>::type::value,
  167. bool Reverse = reverse_dispatch<Geometry1, Geometry2>::type::value
  168. >
  169. struct equals: not_implemented<Tag1, Tag2>
  170. {};
  171. // If reversal is needed, perform it
  172. template
  173. <
  174. typename Geometry1, typename Geometry2,
  175. typename Tag1, typename Tag2,
  176. std::size_t DimensionCount
  177. >
  178. struct equals<Geometry1, Geometry2, Tag1, Tag2, DimensionCount, true>
  179. : equals<Geometry2, Geometry1, Tag2, Tag1, DimensionCount, false>
  180. {
  181. static inline bool apply(Geometry1 const& g1, Geometry2 const& g2)
  182. {
  183. return equals
  184. <
  185. Geometry2, Geometry1,
  186. Tag2, Tag1,
  187. DimensionCount,
  188. false
  189. >::apply(g2, g1);
  190. }
  191. };
  192. template <typename P1, typename P2, std::size_t DimensionCount, bool Reverse>
  193. struct equals<P1, P2, point_tag, point_tag, DimensionCount, Reverse>
  194. : geometry::detail::not_
  195. <
  196. detail::disjoint::point_point<P1, P2, 0, DimensionCount>
  197. >
  198. {};
  199. template <typename Box1, typename Box2, std::size_t DimensionCount, bool Reverse>
  200. struct equals<Box1, Box2, box_tag, box_tag, DimensionCount, Reverse>
  201. : detail::equals::box_box<0, DimensionCount>
  202. {};
  203. template <typename Ring1, typename Ring2, bool Reverse>
  204. struct equals<Ring1, Ring2, ring_tag, ring_tag, 2, Reverse>
  205. : detail::equals::equals_by_collection<detail::equals::area_check>
  206. {};
  207. template <typename Polygon1, typename Polygon2, bool Reverse>
  208. struct equals<Polygon1, Polygon2, polygon_tag, polygon_tag, 2, Reverse>
  209. : detail::equals::equals_by_collection<detail::equals::area_check>
  210. {};
  211. template <typename Polygon, typename Ring, bool Reverse>
  212. struct equals<Polygon, Ring, polygon_tag, ring_tag, 2, Reverse>
  213. : detail::equals::equals_by_collection<detail::equals::area_check>
  214. {};
  215. template <typename Ring, typename Box, bool Reverse>
  216. struct equals<Ring, Box, ring_tag, box_tag, 2, Reverse>
  217. : detail::equals::equals_by_collection<detail::equals::area_check>
  218. {};
  219. template <typename Polygon, typename Box, bool Reverse>
  220. struct equals<Polygon, Box, polygon_tag, box_tag, 2, Reverse>
  221. : detail::equals::equals_by_collection<detail::equals::area_check>
  222. {};
  223. template <typename Segment1, typename Segment2, std::size_t DimensionCount, bool Reverse>
  224. struct equals<Segment1, Segment2, segment_tag, segment_tag, DimensionCount, Reverse>
  225. : detail::equals::segment_segment
  226. {};
  227. template <typename LineString1, typename LineString2, bool Reverse>
  228. struct equals<LineString1, LineString2, linestring_tag, linestring_tag, 2, Reverse>
  229. //: detail::equals::equals_by_collection<detail::equals::length_check>
  230. : detail::equals::equals_by_relate<LineString1, LineString2>
  231. {};
  232. template <typename LineString, typename MultiLineString, bool Reverse>
  233. struct equals<LineString, MultiLineString, linestring_tag, multi_linestring_tag, 2, Reverse>
  234. : detail::equals::equals_by_relate<LineString, MultiLineString>
  235. {};
  236. template <typename MultiLineString1, typename MultiLineString2, bool Reverse>
  237. struct equals<MultiLineString1, MultiLineString2, multi_linestring_tag, multi_linestring_tag, 2, Reverse>
  238. : detail::equals::equals_by_relate<MultiLineString1, MultiLineString2>
  239. {};
  240. template <typename MultiPolygon1, typename MultiPolygon2, bool Reverse>
  241. struct equals
  242. <
  243. MultiPolygon1, MultiPolygon2,
  244. multi_polygon_tag, multi_polygon_tag,
  245. 2,
  246. Reverse
  247. >
  248. : detail::equals::equals_by_collection<detail::equals::area_check>
  249. {};
  250. template <typename Polygon, typename MultiPolygon, bool Reverse>
  251. struct equals
  252. <
  253. Polygon, MultiPolygon,
  254. polygon_tag, multi_polygon_tag,
  255. 2,
  256. Reverse
  257. >
  258. : detail::equals::equals_by_collection<detail::equals::area_check>
  259. {};
  260. } // namespace dispatch
  261. #endif // DOXYGEN_NO_DISPATCH
  262. namespace resolve_variant {
  263. template <typename Geometry1, typename Geometry2>
  264. struct equals
  265. {
  266. static inline bool apply(Geometry1 const& geometry1,
  267. Geometry2 const& geometry2)
  268. {
  269. concept::check_concepts_and_equal_dimensions
  270. <
  271. Geometry1 const,
  272. Geometry2 const
  273. >();
  274. return dispatch::equals<Geometry1, Geometry2>
  275. ::apply(geometry1, geometry2);
  276. }
  277. };
  278. template <BOOST_VARIANT_ENUM_PARAMS(typename T), typename Geometry2>
  279. struct equals<boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>, Geometry2>
  280. {
  281. struct visitor: static_visitor<bool>
  282. {
  283. Geometry2 const& m_geometry2;
  284. visitor(Geometry2 const& geometry2)
  285. : m_geometry2(geometry2)
  286. {}
  287. template <typename Geometry1>
  288. inline bool operator()(Geometry1 const& geometry1) const
  289. {
  290. return equals<Geometry1, Geometry2>
  291. ::apply(geometry1, m_geometry2);
  292. }
  293. };
  294. static inline bool apply(
  295. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry1,
  296. Geometry2 const& geometry2
  297. )
  298. {
  299. return boost::apply_visitor(visitor(geometry2), geometry1);
  300. }
  301. };
  302. template <typename Geometry1, BOOST_VARIANT_ENUM_PARAMS(typename T)>
  303. struct equals<Geometry1, boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
  304. {
  305. struct visitor: static_visitor<bool>
  306. {
  307. Geometry1 const& m_geometry1;
  308. visitor(Geometry1 const& geometry1)
  309. : m_geometry1(geometry1)
  310. {}
  311. template <typename Geometry2>
  312. inline bool operator()(Geometry2 const& geometry2) const
  313. {
  314. return equals<Geometry1, Geometry2>
  315. ::apply(m_geometry1, geometry2);
  316. }
  317. };
  318. static inline bool apply(
  319. Geometry1 const& geometry1,
  320. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry2
  321. )
  322. {
  323. return boost::apply_visitor(visitor(geometry1), geometry2);
  324. }
  325. };
  326. template <
  327. BOOST_VARIANT_ENUM_PARAMS(typename T1),
  328. BOOST_VARIANT_ENUM_PARAMS(typename T2)
  329. >
  330. struct equals<
  331. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T1)>,
  332. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T2)>
  333. >
  334. {
  335. struct visitor: static_visitor<bool>
  336. {
  337. template <typename Geometry1, typename Geometry2>
  338. inline bool operator()(Geometry1 const& geometry1,
  339. Geometry2 const& geometry2) const
  340. {
  341. return equals<Geometry1, Geometry2>
  342. ::apply(geometry1, geometry2);
  343. }
  344. };
  345. static inline bool apply(
  346. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T1)> const& geometry1,
  347. boost::variant<BOOST_VARIANT_ENUM_PARAMS(T2)> const& geometry2
  348. )
  349. {
  350. return boost::apply_visitor(visitor(), geometry1, geometry2);
  351. }
  352. };
  353. } // namespace resolve_variant
  354. /*!
  355. \brief \brief_check{are spatially equal}
  356. \details \details_check12{equals, is spatially equal}. Spatially equal means
  357. that the same point set is included. A box can therefore be spatially equal
  358. to a ring or a polygon, or a linestring can be spatially equal to a
  359. multi-linestring or a segment. This only works theoretically, not all
  360. combinations are implemented yet.
  361. \ingroup equals
  362. \tparam Geometry1 \tparam_geometry
  363. \tparam Geometry2 \tparam_geometry
  364. \param geometry1 \param_geometry
  365. \param geometry2 \param_geometry
  366. \return \return_check2{are spatially equal}
  367. \qbk{[include reference/algorithms/equals.qbk]}
  368. */
  369. template <typename Geometry1, typename Geometry2>
  370. inline bool equals(Geometry1 const& geometry1, Geometry2 const& geometry2)
  371. {
  372. return resolve_variant::equals<Geometry1, Geometry2>
  373. ::apply(geometry1, geometry2);
  374. }
  375. }} // namespace boost::geometry
  376. #endif // BOOST_GEOMETRY_ALGORITHMS_EQUALS_HPP