23 #include <geos/export.h>
24 #include <geos/geom/Polygon.h>
25 #include <geos/geom/GeometryComponentFilter.h>
26 #include <geos/operation/polygonize/PolygonizeGraph.h>
33 #pragma warning(disable: 4251)
46 namespace polygonize {
54 namespace polygonize {
96 LineStringAdder lineStringAdder;
110 static void findValidRings(
const std::vector<EdgeRing*>& edgeRingList,
111 std::vector<EdgeRing*>& validEdgeRingList,
112 std::vector<EdgeRing*>& invalidRingList);
119 std::vector<std::unique_ptr<geom::LineString>> extractInvalidLines(
120 std::vector<EdgeRing*>& invalidRings);
137 bool isIncludedInvalid(
EdgeRing* invalidRing);
139 void findShellsAndHoles(
const std::vector<EdgeRing*>& edgeRingList);
141 void findDisjointShells();
143 static void findOuterShells(std::vector<EdgeRing*>& shellList);
145 static std::vector<std::unique_ptr<geom::Polygon>> extractPolygons(std::vector<EdgeRing*> & shellList,
bool includeAll);
147 bool extractOnlyPolygonal;
152 std::unique_ptr<PolygonizeGraph> graph;
155 std::vector<const geom::LineString*> dangles;
156 std::vector<const geom::LineString*> cutEdges;
157 std::vector<std::unique_ptr<geom::LineString>> invalidRingLines;
159 std::vector<EdgeRing*> holeList;
160 std::vector<EdgeRing*> shellList;
161 std::vector<std::unique_ptr<geom::Polygon>> polyList;
183 void add(std::vector<geom::Geometry*>* geomList);
193 void add(std::vector<const geom::Geometry*>* geomList);
246 bool hasInvalidRingLines();
248 bool allInputsFormPolygons();
251 friend class Polygonizer::LineStringAdder;
Definition: GeometryComponentFilter.h:41
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:197
Definition: LineString.h:66
Represents a ring of PolygonizeDirectedEdge which form a ring of a polygon. The ring may be either an...
Definition: operation/polygonize/EdgeRing.h:59
Polygonizes a set of Geometrys which contain linework that represents the edges of a planar graph.
Definition: Polygonizer.h:82
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...
const std::vector< const geom::LineString * > & getDangles()
Get the list of dangling lines found during polygonization.
Polygonizer(bool onlyPolygonal=false)
Create a Polygonizer with the same GeometryFactory as the input Geometrys.
void add(const geom::Geometry *g)
const std::vector< std::unique_ptr< geom::LineString > > & getInvalidRingLines()
Get the list of lines forming invalid rings found during polygonization.
const std::vector< const geom::LineString * > & getCutEdges()
Get the list of cut edges found during polygonization.
std::vector< std::unique_ptr< geom::Polygon > > getPolygons()
Gets the list of polygons formed by the 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...
Basic namespace for all GEOS functionalities.
Definition: Angle.h:25