File: simplify_countries.cpp

package info (click to toggle)
boost1.90 1.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 593,120 kB
  • sloc: cpp: 4,190,908; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,774; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (197 lines) | stat: -rw-r--r-- 7,681 bytes parent folder | download | duplicates (11)
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
// Boost.Geometry (aka GGL, Generic Geometry Library)
// (Unit) Test

// Copyright (c) 2018 Barend Gehrels, Amsterdam, the Netherlands.

// This file was modified by Oracle on 2021.
// Modifications copyright (c) 2021, Oracle and/or its affiliates.
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle

// 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)


#include <iomanip>

#include <geometry_test_common.hpp>

#include <boost/geometry/algorithms/correct.hpp>
#include <boost/geometry/algorithms/simplify.hpp>

#include <boost/geometry/geometries/geometries.hpp>

#include <boost/geometry/io/wkt/read.hpp>
#include <boost/geometry/io/wkt/write.hpp>

#if defined(TEST_WITH_SVG)
#  include <boost/geometry/io/svg/svg_mapper.hpp>
#endif


template <typename MultiPolygon>
std::string read_from_file(std::string const& filename)
{
    MultiPolygon mp;
    std::ifstream in(filename.c_str());
    while (in.good())
    {
        std::string line;
        std::getline(in, line);
        if (! line.empty())
        {
            typename boost::range_value<MultiPolygon>::type pol;
            bg::read_wkt(line, pol);
            mp.push_back(pol);
        }
    }
    std::ostringstream out;
    if (! mp.empty())
    {
        out << std::fixed << std::setprecision(19) << bg::wkt(mp);
    }

    BOOST_CHECK(! out.str().empty());

    return out.str();
}


template <typename MultiPolygon>
void test_one(std::string const& caseid, std::string const& wkt,
              double distance_in_meters,
              double expected_area_ratio, double expected_perimeter_ratio,
              std::size_t expected_polygon_count = 0,
              std::size_t expected_interior_count = 0,
              std::size_t expected_point_count = 0)
{
    boost::ignore_unused(caseid);

    MultiPolygon geometry, simplified;
    bg::read_wkt(wkt, geometry);
    bg::correct(geometry);
    bg::simplify(geometry, simplified, distance_in_meters);

    double const area_ratio = bg::area(simplified) / bg::area(geometry);
    double const perimeter_ratio = bg::perimeter(simplified) / bg::perimeter(geometry);

    BOOST_CHECK_CLOSE(perimeter_ratio, expected_perimeter_ratio, 0.01);
    BOOST_CHECK_CLOSE(area_ratio, expected_area_ratio, 0.01);
    BOOST_CHECK_EQUAL(expected_polygon_count, boost::size(simplified));
    BOOST_CHECK_EQUAL(expected_interior_count, bg::num_interior_rings(simplified));
    BOOST_CHECK_EQUAL(expected_point_count, bg::num_points(simplified));

//  To add new tests, this is convenient and write the test itself:
//    std::cout << "test_one<mp>(\"" << caseid << "\", " << caseid
//              << ", " << distance_in_meters
//              << std::setprecision(6)
//              << ", " << area_ratio
//              << ", " << perimeter_ratio
//              << ", " << boost::size(simplified)
//              << ", " << bg::num_interior_rings(simplified)
//              << ", " << bg::num_points(simplified)
//              << ");"
//              << std::endl;

#if defined(TEST_WITH_SVG)
    {
        typedef typename boost::range_value<MultiPolygon>::type polygon;

        std::ostringstream filename;
        filename << "simplify_" << caseid << "_" << distance_in_meters << ".svg";

        std::ofstream svg(filename.str().c_str());

        bg::svg_mapper
            <
                typename bg::point_type<MultiPolygon>::type
            > mapper(svg, 1200, 800);
        mapper.add(geometry);
        mapper.add(simplified);

        mapper.map(geometry, "fill-opacity:0.5;fill:rgb(153,204,0);"
                "stroke:rgb(153,204,0);stroke-width:1");
        for (polygon const& pol : simplified)
        {
            mapper.map(pol,
                       bg::area(pol) > 0 ? "fill:none;stroke:rgb(255,0,0);stroke-width:1"
                       : "fill:none;stroke:rgb(255,0,255);stroke-width:1");
        }
    }
#endif
}


template <bool Clockwise, typename P>
void test_all()
{
    typedef bg::model::polygon<P, Clockwise> polygon;
    typedef bg::model::multi_polygon<polygon> mp;

    // The unit test uses countries originally added for buffer unit test
    std::string base_folder = "buffer/data/";

    // Verify for Greece, Italy, Netherlands, Norway and UK
    std::string gr = read_from_file<mp>(base_folder + "gr.wkt");
    std::string it = read_from_file<mp>(base_folder + "it.wkt");
    std::string nl = read_from_file<mp>(base_folder + "nl.wkt");
    std::string no = read_from_file<mp>(base_folder + "no.wkt");
    std::string uk = read_from_file<mp>(base_folder + "uk.wkt");

    // Gradually simplify more aggresively.
    // Area ratio (first) can increase or decrease
    // Perimeter ratio (second) should decrease.
    // Polygons, interior rings, points should decrease
    test_one<mp>("gr", gr, 100, 0.999905, 0.999758, 68, 0, 2520);
    test_one<mp>("gr", gr, 200, 0.999773, 0.998865, 68, 0, 2019);
    test_one<mp>("gr", gr, 500, 0.999026, 0.995931, 68, 0, 1468);
    test_one<mp>("gr", gr, 1000, 0.997782, 0.991475, 68, 0, 1132);
    test_one<mp>("gr", gr, 2000, 0.994448, 0.9793, 65, 0, 854);
    test_one<mp>("gr", gr, 5000, 0.979743, 0.910266, 50, 0, 471);
    test_one<mp>("gr", gr, 10000, 0.968349, 0.778863, 28, 0, 245);
    test_one<mp>("gr", gr, 20000, 0.961943, 0.607009, 10, 0, 97); // Many islands disappear

    test_one<mp>("it", it, 100, 1.00001, 0.999813, 22, 1, 1783);
    test_one<mp>("it", it, 200, 1.00009, 0.9991, 22, 1, 1406);
    test_one<mp>("it", it, 500, 1.00019, 0.996848, 22, 1, 1011);
    test_one<mp>("it", it, 1000, 1.00041, 0.99294, 22, 1, 749);
    test_one<mp>("it", it, 2000, 1.00086, 0.985144, 22, 1, 546);
    test_one<mp>("it", it, 5000, 1.00147, 0.93927, 11, 1, 283);
    test_one<mp>("it", it, 10000, 1.01089, 0.882198, 4, 1, 153);
    test_one<mp>("it", it, 20000, 1.00893, 0.828774, 4, 0, 86); // San Marino disappears

    test_one<mp>("nl", nl, 100, 0.999896, 0.999804, 8, 0, 789);
    test_one<mp>("nl", nl, 200, 0.999733, 0.999095, 8, 0, 633);
    test_one<mp>("nl", nl, 500, 0.999423, 0.996313, 8, 0, 436);
    test_one<mp>("nl", nl, 1000, 0.997893, 0.991951, 8, 0, 331);
    test_one<mp>("nl", nl, 2000, 0.996129, 0.981998, 8, 0, 234);
    test_one<mp>("nl", nl, 5000, 0.986128, 0.896, 5, 0, 132);
    test_one<mp>("nl", nl, 10000, 0.973917, 0.832522, 4, 0, 75);
    test_one<mp>("nl", nl, 20000, 0.970675, 0.739275, 3, 0, 40);

    test_one<mp>("no", no, 100, 0.999966, 0.999975, 95, 0, 7650);
    test_one<mp>("no", no, 200, 0.999812, 0.999731, 95, 0, 6518);
    test_one<mp>("no", no, 500, 0.99929, 0.998092, 95, 0, 4728);
    test_one<mp>("no", no, 1000, 0.998473, 0.994075, 95, 0, 3524);
    test_one<mp>("no", no, 2000, 0.996674, 0.985863, 92, 0, 2576);
    test_one<mp>("no", no, 5000, 0.99098, 0.965689, 87, 0, 1667);
    test_one<mp>("no", no, 10000, 0.978207, 0.906525, 69, 0, 1059);
    test_one<mp>("no", no, 20000, 0.955223, 0.786546, 38, 0, 593);

    test_one<mp>("uk", uk, 100, 0.999942, 0.999878, 48, 0, 3208);
    test_one<mp>("uk", uk, 200, 0.999843, 0.999291, 48, 0, 2615);
    test_one<mp>("uk", uk, 500, 0.999522, 0.996888, 48, 0, 1885);
    test_one<mp>("uk", uk, 1000, 0.999027, 0.992306, 48, 0, 1396);
    test_one<mp>("uk", uk, 2000, 0.998074, 0.983839, 47, 0, 1032);
    test_one<mp>("uk", uk, 5000, 0.991901, 0.943496, 35, 0, 611);
    test_one<mp>("uk", uk, 10000, 0.990039, 0.871969, 23, 0, 359);
    test_one<mp>("uk", uk, 20000, 0.979171, 0.737577, 11, 0, 193);

}

int test_main(int, char* [])
{
    test_all<true, bg::model::point<double, 2, bg::cs::cartesian> >();
    return 0;
}