GEOS 3.11.1
Polygonizer.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2010 Sandro Santilli <strk@kbt.io>
7 * Copyright (C) 2006 Refractions Research Inc.
8 * Copyright (C) 2001-2002 Vivid Solutions Inc.
9 *
10 * This is free software; you can redistribute and/or modify it under
11 * the terms of the GNU Lesser General Public Licence as published
12 * by the Free Software Foundation.
13 * See the COPYING file for more information.
14 *
15 **********************************************************************
16 *
17 * Last port: operation/polygonize/Polygonizer.java 0b3c7e3eb0d3e
18 *
19 **********************************************************************/
20
21#pragma once
22
23#include <geos/export.h>
24#include <geos/geom/Polygon.h>
25#include <geos/geom/GeometryComponentFilter.h> // for LineStringAdder inheritance
26#include <geos/operation/polygonize/PolygonizeGraph.h>
27
28#include <memory>
29#include <vector>
30
31#ifdef _MSC_VER
32#pragma warning(push)
33#pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
34#endif
35
36// Forward declarations
37namespace geos {
38namespace geom {
39class Geometry;
40
41class LineString;
42
43class Polygon;
44}
45namespace operation {
46namespace polygonize {
47class EdgeRing;
48}
49}
50}
51
52namespace geos {
53namespace operation { // geos::operation
54namespace polygonize { // geos::operation::polygonize
55
82class GEOS_DLL Polygonizer {
83private:
87 class GEOS_DLL LineStringAdder: public geom::GeometryComponentFilter {
88 public:
89 Polygonizer* pol;
90 explicit LineStringAdder(Polygonizer* p);
91 //void filter_rw(geom::Geometry *g);
92 void filter_ro(const geom::Geometry* g) override;
93 };
94
95 // default factory
96 LineStringAdder lineStringAdder;
97
103 void add(const geom::LineString* line);
104
108 void polygonize();
109
110 static void findValidRings(const std::vector<EdgeRing*>& edgeRingList,
111 std::vector<EdgeRing*>& validEdgeRingList,
112 std::vector<std::unique_ptr<geom::LineString>>& invalidRingList);
113
114 void findShellsAndHoles(const std::vector<EdgeRing*>& edgeRingList);
115
116 void findDisjointShells();
117
118 static void findOuterShells(std::vector<EdgeRing*>& shellList);
119
120 static std::vector<std::unique_ptr<geom::Polygon>> extractPolygons(std::vector<EdgeRing*> & shellList, bool includeAll);
121
122 bool extractOnlyPolygonal;
123 bool computed;
124
125protected:
126
127 std::unique_ptr<PolygonizeGraph> graph;
128
129 // initialize with empty collections, in case nothing is computed
130 std::vector<const geom::LineString*> dangles;
131 std::vector<const geom::LineString*> cutEdges;
132 std::vector<std::unique_ptr<geom::LineString>> invalidRingLines;
133
134 std::vector<EdgeRing*> holeList;
135 std::vector<EdgeRing*> shellList;
136 std::vector<std::unique_ptr<geom::Polygon>> polyList;
137
138public:
139
146 explicit Polygonizer(bool onlyPolygonal = false);
147
148 ~Polygonizer() = default;
149
158 void add(std::vector<geom::Geometry*>* geomList);
159
168 void add(std::vector<const geom::Geometry*>* geomList);
169
179
188 void add(const geom::Geometry* g);
189
197 std::vector<std::unique_ptr<geom::Polygon>> getPolygons();
198
206 const std::vector<const geom::LineString*>& getDangles();
207
208 bool hasDangles();
209
217 const std::vector<const geom::LineString*>& getCutEdges();
218
219 bool hasCutEdges();
220
229 const std::vector<std::unique_ptr<geom::LineString>>& getInvalidRingLines();
230
231 bool hasInvalidRingLines();
232
233 bool allInputsFormPolygons();
234
235// This seems to be needed by GCC 2.95.4
236 friend class Polygonizer::LineStringAdder;
237};
238
239} // namespace geos::operation::polygonize
240} // namespace geos::operation
241} // namespace geos
242
243#ifdef _MSC_VER
244#pragma warning(pop)
245#endif
Definition: GeometryComponentFilter.h:41
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:186
Definition: LineString.h:66
Polygonizes a set of Geometrys which contain linework that represents the edges of a planar graph.
Definition: Polygonizer.h:82
const std::vector< const geom::LineString * > & getDangles()
Get the list of dangling lines found during polygonization.
void add(std::vector< const geom::Geometry * > *geomList)
Add a collection of geometries to be polygonized. May be called multiple times. Any dimension of Geom...
Polygonizer(bool onlyPolygonal=false)
Create a Polygonizer with the same GeometryFactory as the input Geometrys.
const std::vector< std::unique_ptr< geom::LineString > > & getInvalidRingLines()
Get the list of lines forming invalid rings found during polygonization.
void add(const geom::Geometry *g)
const std::vector< const geom::LineString * > & getCutEdges()
Get the list of cut edges found during polygonization.
void add(std::vector< geom::Geometry * > *geomList)
Add a collection of geometries to be polygonized. May be called multiple times. Any dimension of Geom...
std::vector< std::unique_ptr< geom::Polygon > > getPolygons()
Gets the list of polygons formed by the polygonization.
Basic namespace for all GEOS functionalities.
Definition: geos.h:39