GEOS  3.9.1dev
OverlapUnion.h
Go to the documentation of this file.
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://trac.osgeo.org/geos
5  *
6  * Copyright (C) 2011 Sandro Santilli <strk@kbt.io>
7  *
8  * This is free software; you can redistribute and/or modify it under
9  * the terms of the GNU Lesser General Public Licence as published
10  * by the Free Software Foundation.
11  * See the COPYING file for more information.
12  *
13  **********************************************************************
14  *
15  * Last port: ORIGINAL WORK, generalization of CascadedPolygonUnion
16  *
17  **********************************************************************/
18 
19 #ifndef GEOS_OP_UNION_OVERLAPUNION_H
20 #define GEOS_OP_UNION_OVERLAPUNION_H
21 
22 #include <geos/export.h>
23 
24 #include <vector>
25 #include <algorithm>
26 #include <unordered_set>
27 
28 #include <geos/geom/Geometry.h>
31 
32 // Forward declarations
33 namespace geos {
34 namespace geom {
35 class Envelope;
36 class LineSegment;
37 }
38 }
39 
40 namespace geos {
41 namespace operation { // geos::operation
42 namespace geounion { // geos::operation::geounion
43 
98 
99 public:
100 
102  : g0(p_g0)
103  , g1(p_g1)
104  , unionFunction(unionFun)
105  , geomFactory(p_g0->getFactory())
106  , isUnionSafe(false)
107  {};
108 
109  OverlapUnion(const geom::Geometry* p_g0, const geom::Geometry* p_g1)
110  : OverlapUnion(p_g0, p_g1, &defaultUnionFunction)
111  {};
112 
113 
114  std::unique_ptr<geom::Geometry> doUnion();
115 
116 private:
117 
123 
125 
126  geom::Envelope overlapEnvelope(const geom::Geometry* geom0, const geom::Geometry* geom1);
127  std::unique_ptr<geom::Geometry> extractByEnvelope(const geom::Envelope& env, const geom::Geometry* geom, std::vector<std::unique_ptr<geom::Geometry>>& disjointGeoms);
128  std::unique_ptr<geom::Geometry> combine(std::unique_ptr<geom::Geometry>& unionGeom, std::vector<std::unique_ptr<geom::Geometry>>& disjointPolys);
129  std::unique_ptr<geom::Geometry> unionFull(const geom::Geometry* geom0, const geom::Geometry* geom1);
130  std::unique_ptr<geom::Geometry> unionBuffer(const geom::Geometry* geom0, const geom::Geometry* geom1);
131  bool isBorderSegmentsSame(const geom::Geometry* result, const geom::Envelope& env);
132  bool isEqual(std::vector<geom::LineSegment>& segs0, std::vector<geom::LineSegment>& segs1);
133  std::vector<geom::LineSegment> extractBorderSegments(const geom::Geometry* geom0, const geom::Geometry* geom1, const geom::Envelope& env);
134  void extractBorderSegments(const geom::Geometry* geom, const geom::Envelope& penv, std::vector<geom::LineSegment>& psegs);
135 
136 };
137 
138 } // namespace geos::operation::union
139 } // namespace geos::operation
140 } // namespace geos
141 
142 #endif
geounion::UnionStrategy * unionFunction
Definition: OverlapUnion.h:120
An Envelope defines a rectangulare region of the 2D coordinate plane.
Definition: Envelope.h:58
#define GEOS_DLL
Definition: export.h:28
geounion::ClassicUnionStrategy defaultUnionFunction
Definition: OverlapUnion.h:124
Implementation of UnionStrategy that provides overlay using the first generation overlay routines...
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:188
Unions MultiPolygons efficiently by using full topological union only for polygons which may overlap ...
Definition: OverlapUnion.h:97
const geom::GeometryFactory * geomFactory
Definition: OverlapUnion.h:121
OverlapUnion(const geom::Geometry *p_g0, const geom::Geometry *p_g1, geounion::UnionStrategy *unionFun)
Definition: OverlapUnion.h:101
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Basic namespace for all GEOS functionalities.
OverlapUnion(const geom::Geometry *p_g0, const geom::Geometry *p_g1)
Definition: OverlapUnion.h:109