1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
// Boost.Geometry
// Unit Test
// Copyright (c) 2017-2021, Oracle and/or its affiliates.
// 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
#include <boost/variant/variant.hpp>
#include <geometry_test_common.hpp>
#include <boost/geometry/geometries/geometries.hpp>
#include <boost/geometry/algorithms/densify.hpp>
#include <boost/geometry/algorithms/length.hpp>
#include <boost/geometry/algorithms/num_points.hpp>
#include <boost/geometry/algorithms/perimeter.hpp>
#include <boost/geometry/iterators/segment_iterator.hpp>
#include <boost/geometry/strategies/cartesian/densify.hpp>
#include <boost/geometry/strategies/cartesian/distance_pythagoras.hpp>
#include <boost/geometry/strategies/geographic/densify.hpp>
#include <boost/geometry/strategies/geographic/distance.hpp>
#include <boost/geometry/strategies/spherical/densify.hpp>
#include <boost/geometry/strategies/spherical/distance_haversine.hpp>
#include <boost/geometry/io/wkt/wkt.hpp>
struct check_lengths
{
template <typename G, typename S>
void operator()(G const& g, G const& o, S const& s) const
{
double d1 = bg::length(g, s);
double d2 = bg::length(o, s);
BOOST_CHECK_CLOSE(d1, d2, 0.0001);
}
};
struct check_perimeters
{
template <typename G, typename S>
void operator()(G const& g, G const& o, S const& s) const
{
double d1 = bg::perimeter(g, s);
double d2 = bg::perimeter(o, s);
BOOST_CHECK_CLOSE(d1, d2, 0.0001);
}
};
template <typename G, typename DistS>
double inline shortest_length(G const& g, DistS const& dist_s)
{
double min_len = (std::numeric_limits<double>::max)();
for (bg::segment_iterator<G const> it = bg::segments_begin(g);
it != bg::segments_end(g); ++it)
{
double len = bg::length(*it, dist_s);
min_len = (std::min)(min_len, len);
}
return min_len;
}
template <typename G, typename DistS>
double inline greatest_length(G const& o, DistS const& dist_s)
{
double max_len = 0.0;
for (bg::segment_iterator<G const> it = bg::segments_begin(o);
it != bg::segments_end(o); ++it)
{
double len = bg::length(*it, dist_s);
max_len = (std::max)(max_len, len);
}
return max_len;
}
template <typename G, typename CSTag = typename bg::cs_tag<G>::type>
struct cs_data
{};
template <typename G>
struct cs_data<G, bg::cartesian_tag>
{
bg::strategy::densify::cartesian<> compl_s;
bg::strategy::distance::pythagoras<> dist_s;
};
template <typename G>
struct cs_data<G, bg::spherical_equatorial_tag>
{
cs_data()
: model(6378137.0)
, compl_s(model)
, dist_s(6378137.0)
{}
bg::srs::sphere<double> model;
bg::strategy::densify::spherical<> compl_s;
bg::strategy::distance::haversine<double> dist_s;
};
template <typename G>
struct cs_data<G, bg::geographic_tag>
{
cs_data()
: model(6378137.0, 6356752.3142451793)
, compl_s(model)
, dist_s(model)
{}
bg::srs::spheroid<double> model;
bg::strategy::densify::geographic<> compl_s;
bg::strategy::distance::geographic<> dist_s;
};
template <typename G, typename DistS, typename Check>
inline void check_result(G const& g, G const& o, double max_distance,
DistS const& dist_s, Check const& check)
{
// geometry was indeed densified
std::size_t g_count = bg::num_points(g);
std::size_t o_count = bg::num_points(o);
BOOST_CHECK(g_count < o_count);
// all segments have lengths smaller or equal to max_distance
double gr_len = greatest_length(o, dist_s);
// NOTE: Currently geographic strategies can generate segments that have
// lengths slightly greater than max_distance. In order to change
// this the generation of new points should e.g. be recursive with
// stop condition comparing the current distance calculated by
// inverse strategy.
// NOTE: Closeness value tweaked for Andoyer
bool is_close = (gr_len - max_distance) / (std::max)(gr_len, max_distance) < 0.0001;
BOOST_CHECK(gr_len <= max_distance || is_close);
// the overall length or perimeter didn't change
check(g, o, dist_s);
}
template <typename G, typename Check>
inline void test_geometry(std::string const& wkt, Check const& check)
{
cs_data<G> d;
G g;
bg::read_wkt(wkt, g);
{
bg::default_strategy def_s;
double max_distance = shortest_length(g, def_s) / 3.0;
G o;
bg::densify(g, o, max_distance);
check_result(g, o, max_distance, def_s, check);
using variant_t = boost::variant<G, typename bg::point_type<G>::type>;
variant_t v = g, vo;
bg::densify(v, vo, max_distance);
check(v, vo, def_s);
bg::model::geometry_collection<variant_t> gc{v}, gco;
bg::densify(gc, gco, max_distance);
check(gc, gco, def_s);
}
{
double max_distance = shortest_length(g, d.dist_s) / 3.0;
G o;
bg::densify(g, o, max_distance, d.compl_s);
check_result(g, o, max_distance, d.dist_s, check);
}
}
template <typename G>
inline void test_linear(std::string const& wkt)
{
test_geometry<G>(wkt, check_lengths());
}
template <typename G>
inline void test_areal(std::string const& wkt)
{
test_geometry<G>(wkt, check_perimeters());
}
template <typename P>
void test_all()
{
typedef bg::model::linestring<P> ls_t;
typedef bg::model::multi_linestring<ls_t> mls_t;
typedef bg::model::ring<P> ring_t;
typedef bg::model::polygon<P> poly_t;
typedef bg::model::multi_polygon<poly_t> mpoly_t;
typedef bg::model::ring<P, true, false> oring_t;
typedef bg::model::polygon<P, true, false> opoly_t;
typedef bg::model::multi_polygon<opoly_t> ompoly_t;
test_linear<ls_t>("LINESTRING(4 -4, 4 -1)");
test_linear<ls_t>("LINESTRING(4 4, 4 1)");
test_linear<ls_t>("LINESTRING(0 0, 180 0)");
test_linear<ls_t>("LINESTRING(1 1, -179 -1)");
test_linear<ls_t>("LINESTRING(1 1, 2 2, 4 2)");
test_linear<mls_t>("MULTILINESTRING((1 1, 2 2),(2 2, 4 2))");
test_areal<ring_t>("POLYGON((1 1, 1 2, 2 2, 1 1))");
test_areal<poly_t>("POLYGON((1 1, 1 4, 4 4, 4 1, 1 1),(1 1, 2 2, 2 3, 1 1))");
test_areal<mpoly_t>("MULTIPOLYGON(((1 1, 1 4, 4 4, 4 1, 1 1),(1 1, 2 2, 2 3, 1 1)),((4 4, 5 5, 5 4, 4 4)))");
test_areal<oring_t>("POLYGON((1 1, 1 2, 2 2))");
test_areal<opoly_t>("POLYGON((1 1, 1 4, 4 4, 4 1),(1 1, 2 2, 2 3))");
test_areal<ompoly_t>("MULTIPOLYGON(((1 1, 1 4, 4 4, 4 1),(1 1, 2 2, 2 3)),((4 4, 5 5, 5 4)))");
test_areal<ring_t>("POLYGON((0 0,0 40,40 40,40 0,0 0))");
test_areal<oring_t>("POLYGON((0 0,0 40,40 40,40 0))");
}
int test_main(int, char* [])
{
test_all< bg::model::point<double, 2, bg::cs::cartesian> >();
test_all< bg::model::point<double, 2, bg::cs::spherical_equatorial<bg::degree> > >();
test_all< bg::model::point<double, 2, bg::cs::geographic<bg::degree> > >();
return 0;
}
|