// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2017 Adam Wulkiewicz, Lodz, Poland. // Copyright (c) 2014-2021, Oracle and/or its affiliates. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Licensed under the Boost Software License version 1.0. // http://www.boost.org/users/license.html #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_RING_HPP #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_RING_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // TEMP - with UmbrellaStrategy this will be not needed #include #include // TODO: use point_order instead of area #ifdef BOOST_GEOMETRY_TEST_DEBUG #include #endif namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace is_valid { // struct to check whether a ring is topologically closed template ::value> struct is_topologically_closed { template static inline bool apply(Ring const&, VisitPolicy& visitor, Strategy const&) { boost::ignore_unused(visitor); return visitor.template apply(); } }; template struct is_topologically_closed { template static inline bool apply(Ring const& ring, VisitPolicy& visitor, Strategy const& strategy) { boost::ignore_unused(visitor); using geometry::detail::equals::equals_point_point; if (equals_point_point(range::front(ring), range::back(ring), strategy)) { return visitor.template apply(); } else { return visitor.template apply(); } } }; // TODO: use calculate_point_order here template struct is_properly_oriented { template static inline bool apply(Ring const& ring, VisitPolicy& visitor, Strategy const& strategy) { boost::ignore_unused(visitor); // Check area auto const area = detail::area::ring_area::apply(ring, strategy); decltype(area) const zero = 0; if (IsInteriorRing ? (area < zero) : (area > zero)) { return visitor.template apply(); } else { return visitor.template apply(); } } }; template < typename Ring, bool CheckSelfIntersections = true, bool IsInteriorRing = false > struct is_valid_ring { template static inline bool apply(Ring const& ring, VisitPolicy& visitor, Strategy const& strategy) { // return invalid if any of the following condition holds: // (a) the ring's point coordinates are not invalid (e.g., NaN) // (b) the ring's size is below the minimal one // (c) the ring consists of at most two distinct points // (d) the ring is not topologically closed // (e) the ring has spikes // (f) the ring has duplicate points (if AllowDuplicates is false) // (g) the boundary of the ring has self-intersections // (h) the order of the points is inconsistent with the defined order // // Note: no need to check if the area is zero. If this is the // case, then the ring must have at least two spikes, which is // checked by condition (d). if (has_invalid_coordinate::apply(ring, visitor)) { return false; } if (boost::size(ring) < detail::minimum_ring_size::value) { return visitor.template apply(); } detail::closed_view const view(ring); if (detail::num_distinct_consecutive_points < decltype(view), 4u, true >::apply(view, strategy) < 4u) { return visitor.template apply(); } return is_topologically_closed::apply(ring, visitor, strategy) && ! has_duplicates::apply(ring, visitor, strategy) && ! has_spikes::apply(ring, visitor, strategy) && (! CheckSelfIntersections || has_valid_self_turns::apply(ring, visitor, strategy)) && is_properly_oriented::apply(ring, visitor, strategy); } }; }} // namespace detail::is_valid #endif // DOXYGEN_NO_DETAIL #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { // A Ring is a Polygon with exterior boundary only. // The Ring's boundary must be a LinearRing (see OGC 06-103-r4, // 6.1.7.1, for the definition of LinearRing) // // Reference (for polygon validity): OGC 06-103r4 (6.1.11.1) template struct is_valid < Ring, ring_tag, AllowEmptyMultiGeometries > : detail::is_valid::is_valid_ring {}; } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_RING_HPP