21 #include "qgis_core.h" 26 #if defined(GEOS_VERSION_MAJOR) && (GEOS_VERSION_MAJOR<3) 27 #define GEOSGeometry struct GEOSGeom_t 28 #define GEOSCoordSequence struct GEOSCoordSeq_t 55 void CORE_EXPORT
operator()( GEOSGeometry *geom );
61 void CORE_EXPORT
operator()(
const GEOSPreparedGeometry *geom );
67 void CORE_EXPORT
operator()( GEOSBufferParams *params );
73 void CORE_EXPORT
operator()( GEOSCoordSequence *sequence );
79 using unique_ptr = std::unique_ptr< GEOSGeometry, GeosDeleter>;
133 void geometryChanged()
override;
134 void prepareGeometry()
override;
143 std::unique_ptr< QgsAbstractGeometry > clip(
const QgsRectangle &rectangle, QString *errorMsg =
nullptr )
const;
159 std::unique_ptr< QgsAbstractGeometry > subdivide(
int maxNodes, QString *errorMsg =
nullptr )
const;
162 QgsAbstractGeometry *combine(
const QVector<QgsAbstractGeometry *> &geomList, QString *errorMsg )
const override;
163 QgsAbstractGeometry *combine(
const QVector< QgsGeometry > &, QString *errorMsg =
nullptr )
const override;
165 QgsAbstractGeometry *buffer(
double distance,
int segments, QString *errorMsg =
nullptr )
const override;
166 QgsAbstractGeometry *buffer(
double distance,
int segments,
int endCapStyle,
int joinStyle,
double miterLimit, QString *errorMsg =
nullptr )
const override;
167 QgsAbstractGeometry *simplify(
double tolerance, QString *errorMsg =
nullptr )
const override;
168 QgsAbstractGeometry *interpolate(
double distance, QString *errorMsg =
nullptr )
const override;
170 QgsPoint *centroid( QString *errorMsg =
nullptr )
const override;
171 QgsPoint *pointOnSurface( QString *errorMsg =
nullptr )
const override;
173 double distance(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
190 double hausdorffDistance(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const;
208 double hausdorffDistanceDensify(
const QgsAbstractGeometry *geom,
double densifyFraction, QString *errorMsg =
nullptr )
const;
210 bool intersects(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
211 bool touches(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
212 bool crosses(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
213 bool within(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
214 bool overlaps(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
215 bool contains(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
216 bool disjoint(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
217 QString relate(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
218 bool relatePattern(
const QgsAbstractGeometry *geom,
const QString &pattern, QString *errorMsg =
nullptr )
const override;
219 double area( QString *errorMsg =
nullptr )
const override;
220 double length( QString *errorMsg =
nullptr )
const override;
221 bool isValid( QString *errorMsg =
nullptr,
bool allowSelfTouchingHoles =
false,
QgsGeometry *errorLoc =
nullptr )
const override;
222 bool isEqual(
const QgsAbstractGeometry *geom, QString *errorMsg =
nullptr )
const override;
223 bool isEmpty( QString *errorMsg =
nullptr )
const override;
224 bool isSimple( QString *errorMsg =
nullptr )
const override;
227 QVector<QgsGeometry> &newGeometries,
230 QString *errorMsg =
nullptr )
const override;
232 QgsAbstractGeometry *offsetCurve(
double distance,
int segments,
int joinStyle,
double miterLimit, QString *errorMsg =
nullptr )
const override;
247 std::unique_ptr< QgsAbstractGeometry > singleSidedBuffer(
double distance,
int segments,
int side,
248 int joinStyle,
double miterLimit,
249 QString *errorMsg =
nullptr )
const;
269 QgsGeometry mergeLines( QString *errorMsg =
nullptr )
const;
295 double lineLocatePoint(
const QgsPoint &point, QString *errorMsg =
nullptr )
const;
306 static QgsGeometry polygonize(
const QVector<const QgsAbstractGeometry *> &geometries, QString *errorMsg =
nullptr );
323 QgsGeometry voronoiDiagram(
const QgsAbstractGeometry *extent =
nullptr,
double tolerance = 0.0,
bool edgesOnly =
false, QString *errorMsg =
nullptr )
const;
334 QgsGeometry delaunayTriangulation(
double tolerance = 0.0,
bool edgesOnly =
false, QString *errorMsg =
nullptr )
const;
340 static std::unique_ptr< QgsAbstractGeometry > fromGeos(
const GEOSGeometry *geos );
341 static std::unique_ptr< QgsPolygon > fromGeosPolygon(
const GEOSGeometry *geos );
357 static QgsPoint coordSeqPoint(
const GEOSCoordSequence *cs,
int i,
bool hasZ,
bool hasM );
359 static GEOSContextHandle_t getGEOSHandler();
365 double mPrecision = 0.0;
387 void cacheGeos()
const;
388 std::unique_ptr< QgsAbstractGeometry > overlay(
const QgsAbstractGeometry *geom, Overlay op, QString *errorMsg =
nullptr )
const;
389 bool relation(
const QgsAbstractGeometry *geom, Relation r, QString *errorMsg =
nullptr )
const;
390 static GEOSCoordSequence *createCoordinateSequence(
const QgsCurve *curve,
double precision,
bool forceClose =
false );
391 static std::unique_ptr< QgsLineString > sequenceToLinestring(
const GEOSGeometry *geos,
bool hasZ,
bool hasM );
392 static int numberOfGeometries( GEOSGeometry *g );
393 static geos::unique_ptr nodeGeometries(
const GEOSGeometry *splitLine,
const GEOSGeometry *geom );
394 int mergeGeometriesMultiTypeSplit( QVector<GEOSGeometry *> &splitResult )
const;
399 static geos::unique_ptr createGeosCollection(
int typeId,
const QVector<GEOSGeometry *> &geoms );
401 static geos::unique_ptr createGeosPointXY(
double x,
double y,
bool hasZ,
double z,
bool hasM,
double m,
int coordDims,
double precision );
407 bool topologicalTestPointsSplit(
const GEOSGeometry *splitLine,
QgsPointSequence &testPoints, QString *errorMsg =
nullptr )
const;
409 EngineOperationResult splitLinearGeometry( GEOSGeometry *splitLine, QVector<QgsGeometry > &newGeometries )
const;
410 EngineOperationResult splitPolygonGeometry( GEOSGeometry *splitLine, QVector<QgsGeometry > &newGeometries )
const;
413 static geos::unique_ptr reshapeLine(
const GEOSGeometry *line,
const GEOSGeometry *reshapeLineGeos,
double precision );
414 static geos::unique_ptr reshapePolygon(
const GEOSGeometry *polygon,
const GEOSGeometry *reshapeLineGeos,
double precision );
415 static int lineContainedInLine(
const GEOSGeometry *line1,
const GEOSGeometry *line2 );
416 static int pointContainedInLine(
const GEOSGeometry *point,
const GEOSGeometry *line );
417 static int geomDigits(
const GEOSGeometry *geom );
424 class GEOSException :
public std::runtime_error
427 explicit GEOSException(
const QString &message )
428 : std::runtime_error( message.toUtf8().constData() )
A rectangle specified with double values.
std::unique_ptr< const GEOSPreparedGeometry, GeosDeleter > prepared_unique_ptr
Scoped GEOS prepared geometry pointer.
A geometry is the spatial representation of a feature.
void CORE_EXPORT operator()(GEOSGeometry *geom)
Destroys the GEOS geometry geom, using the static QGIS geos context.
OperationResult
Success or failure of a geometry operation.
std::unique_ptr< GEOSGeometry, GeosDeleter > unique_ptr
Scoped GEOS pointer.
Abstract base class for curved geometry type.
Abstract base class for all geometries.
Does vector analysis using the geos library and handles import, export, exception handling*...
std::unique_ptr< GEOSBufferParams, GeosDeleter > buffer_params_unique_ptr
Scoped GEOS buffer params pointer.
Point geometry type, with support for z-dimension and m-values.
Contains geos related utilities and functions.
QVector< QgsPoint > QgsPointSequence
Line string geometry type, with support for z-dimension and m-values.
Contains geometry relation and modification algorithms.
std::unique_ptr< GEOSCoordSequence, GeosDeleter > coord_sequence_unique_ptr
Scoped GEOS coordinate sequence pointer.
EngineOperationResult
Success or failure of a geometry operation.
Destroys the GEOS geometry geom, using the static QGIS geos context.