QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsgeometryselfintersectioncheck.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsgeometryselfintersectioncheck.h
3  ---------------------
4  begin : September 2015
5  copyright : (C) 2014 by Sandro Mani / Sourcepole AG
6  email : smani at sourcepole dot ch
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #define SIP_NO_FILE
17 
18 #ifndef QGS_GEOMETRY_SELFINTERSECTION_CHECK_H
19 #define QGS_GEOMETRY_SELFINTERSECTION_CHECK_H
20 
21 #include "qgsgeometryutils.h"
22 #include "qgssinglegeometrycheck.h"
23 
28 {
29  public:
31  const QgsGeometry &geometry,
32  const QgsGeometry &errorLocation,
33  QgsVertexId vertexId,
34  const QgsGeometryUtils::SelfIntersection &intersection )
35  : QgsSingleGeometryCheckError( check, geometry, errorLocation, vertexId )
36  , mIntersection( intersection )
37  {}
38 
39  const QgsGeometryUtils::SelfIntersection &intersection() const { return mIntersection; }
40  bool isEqual( const QgsSingleGeometryCheckError *other ) const override;
41  bool handleChanges( const QList<QgsGeometryCheck::Change> &changes ) override;
42  void update( const QgsSingleGeometryCheckError *other ) override;
43 
44  private:
46 };
47 
52 {
53  Q_DECLARE_TR_FUNCTIONS( QgsGeometrySelfIntersectionCheck )
54  public:
56  {
59  NoChange
60  };
61 
62  explicit QgsGeometrySelfIntersectionCheck( const QgsGeometryCheckContext *context, const QVariantMap &configuration = QVariantMap() )
63  : QgsSingleGeometryCheck( context,
64  configuration ) {}
65  QList<QgsWkbTypes::GeometryType> compatibleGeometryTypes() const override { return factoryCompatibleGeometryTypes(); }
66  void fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> &mergeAttributeIndices, Changes &changes ) const override;
67  Q_DECL_DEPRECATED QStringList resolutionMethods() const override;
68  QString description() const override { return factoryDescription(); }
69  QString id() const override { return factoryId(); }
70  QgsGeometryCheck::Flags flags() const override {return factoryFlags(); }
71  QgsGeometryCheck::CheckType checkType() const override { return factoryCheckType(); }
72 
73  QList<QgsSingleGeometryCheckError *> processGeometry( const QgsGeometry &geometry ) const override;
74 
76  static QList<QgsWkbTypes::GeometryType> factoryCompatibleGeometryTypes() SIP_SKIP;
77  static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP;
78  static QString factoryDescription() SIP_SKIP;
79  static QgsGeometryCheck::Flags factoryFlags() SIP_SKIP;
80  static QString factoryId() SIP_SKIP;
81  static QgsGeometryCheck::CheckType factoryCheckType() SIP_SKIP;
83 
84 };
85 
86 #endif // QGS_GEOMETRY_SELFINTERSECTION_CHECK_H
QgsGeometrySelfIntersectionCheck::ToMultiObject
@ ToMultiObject
Definition: qgsgeometryselfintersectioncheck.h:57
QgsGeometryUtils::SelfIntersection
Definition: qgsgeometryutils.h:248
QgsSingleGeometryCheckError::update
virtual void update(const QgsSingleGeometryCheckError *other)
Update this error with the information from other.
Definition: qgssinglegeometrycheck.cpp:42
QgsGeometryCheck::resolutionMethods
virtual Q_DECL_DEPRECATED QStringList resolutionMethods() const
Returns a list of descriptions for available resolutions for errors.
Definition: qgsgeometrycheck.cpp:77
QgsSingleGeometryCheckError
An error from a QgsSingleGeometryCheck.
Definition: qgssinglegeometrycheck.h:40
QgsGeometrySelfIntersectionCheckError
Definition: qgsgeometryselfintersectioncheck.h:28
QgsGeometrySelfIntersectionCheck
Definition: qgsgeometryselfintersectioncheck.h:52
QgsGeometrySelfIntersectionCheck::ResolutionMethod
ResolutionMethod
Definition: qgsgeometryselfintersectioncheck.h:56
QgsSingleGeometryCheck::processGeometry
virtual QList< QgsSingleGeometryCheckError * > processGeometry(const QgsGeometry &geometry) const =0
Check the geometry for errors.
QgsSingleGeometryCheck
Base class for geometry checks for a single geometry without any context of the layer or other layers...
Definition: qgssinglegeometrycheck.h:150
QgsGeometryCheck
This class implements a geometry check.
Definition: qgsgeometrycheck.h:92
QgsGeometryCheck::fixError
virtual void fixError(const QMap< QString, QgsFeaturePool * > &featurePools, QgsGeometryCheckError *error, int method, const QMap< QString, int > &mergeAttributeIndices, Changes &changes) const
Fixes the error error with the specified method.
Definition: qgsgeometrycheck.cpp:50
SIP_SKIP
#define SIP_SKIP
Definition: qgis_sip.h:126
QgsGeometrySelfIntersectionCheck::QgsGeometrySelfIntersectionCheck
QgsGeometrySelfIntersectionCheck(const QgsGeometryCheckContext *context, const QVariantMap &configuration=QVariantMap())
Definition: qgsgeometryselfintersectioncheck.h:62
QgsGeometrySelfIntersectionCheck::id
QString id() const override
Returns an id for this check.
Definition: qgsgeometryselfintersectioncheck.h:69
QgsGeometryCheckContext
Base configuration for geometry checks.
Definition: qgsgeometrycheckcontext.h:32
qgsgeometryutils.h
QgsGeometrySelfIntersectionCheck::compatibleGeometryTypes
QList< QgsWkbTypes::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
Definition: qgsgeometryselfintersectioncheck.h:65
QgsGeometrySelfIntersectionCheckError::intersection
const QgsGeometryUtils::SelfIntersection & intersection() const
Definition: qgsgeometryselfintersectioncheck.h:39
QgsSingleGeometryCheckError::isEqual
virtual bool isEqual(const QgsSingleGeometryCheckError *other) const
Check if this error is equal to other.
Definition: qgssinglegeometrycheck.cpp:50
QgsGeometrySelfIntersectionCheck::checkType
QgsGeometryCheck::CheckType checkType() const override
Returns the check type.
Definition: qgsgeometryselfintersectioncheck.h:71
QgsGeometrySelfIntersectionCheck::ToSingleObjects
@ ToSingleObjects
Definition: qgsgeometryselfintersectioncheck.h:58
QgsGeometry
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:124
QgsGeometrySelfIntersectionCheckError::QgsGeometrySelfIntersectionCheckError
QgsGeometrySelfIntersectionCheckError(const QgsSingleGeometryCheck *check, const QgsGeometry &geometry, const QgsGeometry &errorLocation, QgsVertexId vertexId, const QgsGeometryUtils::SelfIntersection &intersection)
Definition: qgsgeometryselfintersectioncheck.h:30
QgsVectorLayer
Represents a vector layer which manages a vector based data sets.
Definition: qgsvectorlayer.h:387
QgsGeometryCheck::CheckType
CheckType
The type of a check.
Definition: qgsgeometrycheck.h:155
QgsVertexId
Utility class for identifying a unique vertex within a geometry.
Definition: qgsabstractgeometry.h:1059
QgsGeometrySelfIntersectionCheck::description
QString description() const override
Returns a human readable description for this check.
Definition: qgsgeometryselfintersectioncheck.h:68
qgssinglegeometrycheck.h
QgsGeometryCheckError
This represents an error reported by a geometry check.
Definition: qgsgeometrycheckerror.h:36
QgsGeometrySelfIntersectionCheck::flags
QgsGeometryCheck::Flags flags() const override
Flags for this geometry check.
Definition: qgsgeometryselfintersectioncheck.h:70
QgsSingleGeometryCheckError::handleChanges
virtual bool handleChanges(const QList< QgsGeometryCheck::Change > &changes)
Apply a list of changes.
Definition: qgssinglegeometrycheck.cpp:58