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
|
// $Id: TopologyPreservingSimplifierTest.cpp 1820 2006-09-06 16:54:23Z mloskot $
//
// Test Suite for geos::simplify::TopologyPreservingSimplifier
// TUT
#include <tut.h>
#include "utility.h"
// GEOS
#include <geos/io/WKTReader.h>
#include <geos/geom/PrecisionModel.h>
#include <geos/geom/GeometryFactory.h>
#include <geos/geom/Geometry.h>
#include <geos/geom/LineString.h>
#include <geos/simplify/TopologyPreservingSimplifier.h>
// C++ SL
#include <string>
#include <memory>
namespace tut
{
using namespace geos::simplify;
//
// Test Group
//
// Common data used by tests
struct test_tpsimp_data
{
geos::geom::PrecisionModel pm;
geos::geom::GeometryFactory gf;
geos::io::WKTReader wktreader;
typedef geos::geom::Geometry::AutoPtr GeomPtr;
test_tpsimp_data()
:
pm(1.0),
gf(&pm),
wktreader(&gf)
{}
};
typedef test_group<test_tpsimp_data> group;
typedef group::object object;
group test_tpsimp_group("geos::simplify::TopologyPreservingSimplifier");
//
// Test Cases
//
// PolygonNoReduction
template<>
template<>
void object::test<1>()
{
std::string wkt("POLYGON((20 220, 40 220, 60 220, 80 220, \
100 220, 120 220, 140 220, 140 180, 100 180, \
60 180, 20 180, 20 220))");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( simplified->equals(g.get()) );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
// PolygonNoReductionWithConflicts
template<>
template<>
void object::test<2>()
{
std::string wkt("POLYGON ((40 240, 160 241, 280 240, 280 160, \
160 240, 40 140, 40 240))");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( "Topology has been changed by simplification!", simplified->equals(g.get()) );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
// PolygonWithTouchingHole
template<>
template<>
void object::test<3>()
{
std::string wkt("POLYGON ((80 200, 240 200, 240 60, 80 60, 80 200), \
(120 120, 220 120, 180 199, 160 200, 140 199, 120 120))");
std::string wkt_expected("POLYGON ((80 200, 240 200, 240 60, 80 60, 80 200), \
(120 120, 220 120, 180 199, 160 200, 140 199, 120 120))");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
GeomPtr g_expected(wktreader.read(wkt_expected));
ensure( g_expected->equalsExact(simplified.get()) );
}
// FlattishPolygon
template<>
template<>
void object::test<4>()
{
std::string wkt("POLYGON ((0 0, 50 0, 53 0, 55 0, 100 0, \
70 1, 60 1, 50 1, 40 1, 0 0))");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
// PolygonWithFlattishHole
template<>
template<>
void object::test<5>()
{
std::string wkt("POLYGON ((0 0, 0 200, 200 200, 200 0, 0 0), \
(140 40, 90 95, 40 160, 95 100, 140 40))");
GeomPtr g(wktreader.read(wkt));
GeomPtr g_expected(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
ensure( g_expected->equalsExact(simplified.get()) );
}
// TinySquare
template<>
template<>
void object::test<6>()
{
std::string wkt("POLYGON ((0 5, 5 5, 5 0, 0 0, 0 1, 0 5))");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
// TinyLineString
template<>
template<>
void object::test<7>()
{
std::string wkt("LINESTRING (0 5, 1 5, 2 5, 5 5)");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
// MultiPoint
template<>
template<>
void object::test<8>()
{
std::string wkt("MULTIPOINT(80 200, 240 200, 240 60, \
80 60, 80 200, 140 199, 120 120)");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
// MultiLineString
template<>
template<>
void object::test<9>()
{
std::string wkt("MULTILINESTRING((0 0, 50 0, 70 0, 80 0, 100 0), \
(0 0, 50 1, 60 1, 100 0))");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
// GeometryCollection
template<>
template<>
void object::test<10>()
{
std::string wkt("GEOMETRYCOLLECTION ( \
MULTIPOINT (80 200, 240 200, 240 60, 80 60, 80 200, 140 199, 120 120), \
POLYGON ((80 200, 240 200, 240 60, 80 60, 80 200)), \
LINESTRING (80 200, 240 200, 240 60, 80 60, 80 200, 140 199, 120 120))");
GeomPtr g(wktreader.read(wkt));
GeomPtr simplified = TopologyPreservingSimplifier::simplify(g.get(), 10.0);
ensure( "Simplified geometry is invalid!", simplified->isValid() );
ensure( utility::isSameStructure(g.get(), simplified.get()) );
}
} // namespace tut
|