// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2025 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. // Copyright (c) 2014-2024 Adam Wulkiewicz, Lodz, Poland. // This file was modified by Oracle on 2017-2023. // Modifications copyright (c) 2017-2023, Oracle and/or its affiliates. // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_ALGORITHMS_CONVERT_HPP #define BOOST_GEOMETRY_ALGORITHMS_CONVERT_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace geometry { // Silence warning C4127: conditional expression is constant // Silence warning C4512: assignment operator could not be generated #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable : 4127 4512) #endif #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace conversion { template < typename Point, typename Box, std::size_t Index, std::size_t Dimension, std::size_t DimensionCount > struct point_to_box { static inline void apply(Point const& point, Box& box) { set(box, util::numeric_cast>(get(point))); point_to_box < Point, Box, Index, Dimension + 1, DimensionCount >::apply(point, box); } }; template < typename Point, typename Box, std::size_t Index, std::size_t DimensionCount > struct point_to_box { static inline void apply(Point const& , Box& ) {} }; template struct box_to_range { template static inline void apply(Box const& box, Range& range) { traits::resize::apply(range, Close ? 5 : 4); assign_box_corners_oriented(box, range); if (Close) { range::at(range, 4) = range::at(range, 0); } } }; template struct segment_to_range { static inline void apply(Segment const& segment, Range& range) { traits::resize::apply(range, 2); auto it = boost::begin(range); assign_point_from_index<0>(segment, *it); ++it; assign_point_from_index<1>(segment, *it); } }; struct range_to_range { struct default_policy { template static inline void apply(Point1 const& point1, Point2 & point2) { geometry::detail::conversion::convert_point_to_point(point1, point2); } }; template static inline void apply(Range1 const& source, Range2& destination) { apply(source, destination, default_policy()); } template static inline ConvertPointPolicy apply(Range1 const& source, Range2& destination, ConvertPointPolicy convert_point) { geometry::clear(destination); constexpr bool reverse = geometry::point_order::value != geometry::point_order::value; using view_type = detail::closed_clockwise_view < Range1 const, geometry::closure::value, reverse ? counterclockwise : clockwise >; // We consider input always as closed, and skip last // point for open output. view_type const view(source); auto n = boost::size(view); if (geometry::closure::value == geometry::open) { n--; } // If size == 0 && geometry::open <=> n = numeric_limits::max() // but ok, sice below it == end() decltype(n) i = 0; for (auto it = boost::begin(view); it != boost::end(view) && i < n; ++it, ++i) { typename boost::range_value::type point; convert_point.apply(*it, point); range::push_back(destination, point); } return convert_point; } }; // Converts a polygon to an output iterator of ranges. // The iterator is updated such that it can used iteratively. struct polygon_to_multi_range { template static inline void apply(Polygon const& source, OutputIterator& it) { range_to_range::apply(geometry::exterior_ring(source), *it++); for (auto const& ring : geometry::interior_rings(source)) { range_to_range::apply(ring, *it++); } } }; template struct polygon_to_polygon { static inline void apply(Polygon1 const& source, Polygon2& destination) { range_to_range::apply(geometry::exterior_ring(source), geometry::exterior_ring(destination)); // Container should be resizeable traits::resize < std::remove_reference_t < typename traits::interior_mutable_type::type > >::apply(interior_rings(destination), num_interior_rings(source)); auto const& rings_source = interior_rings(source); auto&& rings_dest = interior_rings(destination); auto it_source = boost::begin(rings_source); auto it_dest = boost::begin(rings_dest); for ( ; it_source != boost::end(rings_source); ++it_source, ++it_dest) { range_to_range::apply(*it_source, *it_dest); } } }; struct range_to_multi_point { template static inline void append_from_source(Range const& source, Iterator& it) { for (auto const& point : source) { detail::conversion::convert_point_to_point(point, *it); ++it; } } template static inline void apply(Range const& source, MultiPoint& destination) { traits::resize::apply(destination, boost::size(source)); auto it = boost::begin(destination); append_from_source(source, it); } }; struct polygon_to_range { template static inline void append_from_polygon(Polygon const& source, Iterator& it) { range_to_multi_point::append_from_source(geometry::exterior_ring(source), it); for (auto const& ring : geometry::interior_rings(source)) { range_to_multi_point::append_from_source(ring, it); } } template static inline void apply(Polygon const& source, MultiPoint& destination) { traits::resize::apply(destination, geometry::num_points(source)); auto it = boost::begin(destination); append_from_polygon(source, it); } }; struct multi_polygon_to_range { template static inline void apply(MultiPolygon const& source, MultiPoint& destination) { traits::resize::apply(destination, geometry::num_points(source)); auto it = boost::begin(destination); for (auto const& polygon : source) { polygon_to_range::append_from_polygon(polygon, it); } } }; template struct single_to_multi { static inline void apply(Single const& single, Multi& multi) { traits::resize::apply(multi, 1); ConversionAlgorithm::apply(single, *boost::begin(multi)); } }; template struct multi_to_multi { static inline void apply(Multi1 const& multi1, Multi2& multi2) { traits::resize::apply(multi2, boost::size(multi1)); auto it1 = boost::begin(multi1); auto it2 = boost::begin(multi2); for (; it1 != boost::end(multi1); ++it1, ++it2) { ConversionAlgorithm::apply(*it1, *it2); } } }; }} // namespace detail::conversion #endif // DOXYGEN_NO_DETAIL #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { // TODO: We could use std::is_assignable instead of std::is_same. // Then we should rather check ! std::is_array::value // which is Destination. template < typename Geometry1, typename Geometry2, typename Tag1 = tag_t, typename Tag2 = tag_t, std::size_t DimensionCount = dimension::value, bool UseAssignment = std::is_same::value && !std::is_array::value > struct convert : not_implemented < Tag1, Tag2, std::integral_constant > {}; template < typename Geometry1, typename Geometry2, typename Tag, std::size_t DimensionCount > struct convert { // Same geometry type -> copy geometry static inline void apply(Geometry1 const& source, Geometry2& destination) { destination = source; } }; template struct convert : detail::conversion::point_to_point {}; template struct convert : detail::conversion::indexed_to_indexed {}; template struct convert : detail::conversion::indexed_to_indexed {}; template struct convert : detail::conversion::segment_to_range {}; template struct convert : detail::conversion::range_to_range {}; template struct convert : detail::conversion::range_to_range {}; template struct convert : detail::conversion::polygon_to_polygon {}; template struct convert : detail::conversion::box_to_range {}; template struct convert : detail::conversion::box_to_range < geometry::closure::value == closed, geometry::point_order::value == counterclockwise > {}; template struct convert : detail::conversion::box_to_range {}; template struct convert { static inline void apply(Box const& box, Polygon& polygon) { convert < Box, ring_type_t, box_tag, ring_tag, 2, false >::apply(box, exterior_ring(polygon)); } }; template struct convert { static inline void apply(Point const& point, Box& box) { detail::conversion::point_to_box < Point, Box, min_corner, 0, DimensionCount >::apply(point, box); detail::conversion::point_to_box < Point, Box, max_corner, 0, DimensionCount >::apply(point, box); } }; template struct convert { static inline void apply(Ring const& ring, Polygon& polygon) { convert < Ring, ring_type_t, ring_tag, ring_tag, DimensionCount, false >::apply(ring, exterior_ring(polygon)); } }; // Polygon to ring, this ignores interior rings template struct convert { static inline void apply(Polygon const& polygon, Ring& ring) { convert < ring_type_t, Ring, ring_tag, ring_tag, DimensionCount, false >::apply(exterior_ring(polygon), ring); } }; template struct convert : detail::conversion::range_to_multi_point {}; template struct convert : detail::conversion::range_to_multi_point {}; template struct convert : detail::conversion::polygon_to_range {}; template struct convert : detail::conversion::multi_polygon_to_range {}; template struct convert { static inline void apply(MultiLineString const& source, MultiPoint& destination) { traits::resize::apply(destination, geometry::num_points(source)); auto it = boost::begin(destination); for (auto const& linestring : source) { detail::conversion::range_to_multi_point::append_from_source(linestring, it); } } }; template struct convert { static inline void apply(Ring const& source, MultiLinestring& destination) { traits::resize::apply(destination, 1); detail::conversion::range_to_range::apply(source, *boost::begin(destination)); } }; template struct convert { static inline void apply(Polygon const& source, MultiLinestring& destination) { traits::resize::apply(destination, 1 + geometry::num_interior_rings(source)); auto it = boost::begin(destination); detail::conversion::polygon_to_multi_range::apply(source, it); } }; template struct convert { static inline void apply(MultiPolygon const& source, MultiLinestring& destination) { std::size_t ring_count = boost::size(source); for (auto const& polygon : source) { ring_count += geometry::num_interior_rings(polygon); } traits::resize::apply(destination, ring_count); auto it = boost::begin(destination); for (auto const& polygon : source) { detail::conversion::polygon_to_multi_range::apply(polygon, it); } } }; template struct single_to_multi_convert : detail::conversion::single_to_multi < Single, Multi, convert < Single, typename boost::range_value::type, tag_t, single_tag_of_t>, DimensionCount, false > > {}; template struct multi_to_multi_convert : detail::conversion::multi_to_multi < Multi1, Multi2, convert < typename boost::range_value::type, typename boost::range_value::type, single_tag_of_t>, single_tag_of_t>, DimensionCount > > {}; // Multi to multi of the same tag type template struct convert : multi_to_multi_convert {}; template struct convert : multi_to_multi_convert {}; template struct convert : multi_to_multi_convert {}; // Single to multi of the same topological tag type template struct convert : single_to_multi_convert {}; template struct convert : single_to_multi_convert {}; template struct convert : single_to_multi_convert {}; // To multi_polygon (box, ring, polygon) template struct convert : single_to_multi_convert {}; template struct convert : single_to_multi_convert {}; template struct convert : single_to_multi_convert {}; } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH namespace resolve_variant { template struct convert { static inline void apply(Geometry1 const& geometry1, Geometry2& geometry2) { concepts::check_concepts_and_equal_dimensions(); dispatch::convert::apply(geometry1, geometry2); } }; template struct convert, Geometry2> { struct visitor: static_visitor { Geometry2& m_geometry2; visitor(Geometry2& geometry2) : m_geometry2(geometry2) {} template inline void operator()(Geometry1 const& geometry1) const { convert::apply(geometry1, m_geometry2); } }; static inline void apply( boost::variant const& geometry1, Geometry2& geometry2 ) { boost::apply_visitor(visitor(geometry2), geometry1); } }; } /*! \brief Converts one geometry to another geometry \details The convert algorithm converts one geometry, e.g. a BOX, to another geometry, e.g. a RING. This only works if it is possible and applicable. If the point-order is different, or the closure is different between two geometry types, it will be converted correctly by explicitly reversing the points or closing or opening the polygon rings. \ingroup convert \tparam Geometry1 \tparam_geometry \tparam Geometry2 \tparam_geometry \param geometry1 \param_geometry (source) \param geometry2 \param_geometry (target) \qbk{[include reference/algorithms/convert.qbk]} */ template inline void convert(Geometry1 const& geometry1, Geometry2& geometry2) { resolve_variant::convert::apply(geometry1, geometry2); } #if defined(_MSC_VER) #pragma warning(pop) #endif }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_CONVERT_HPP