QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsgeometryanglecheck.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsgeometryanglecheck.cpp
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
17
18#include "qgsfeaturepool.h"
19#include "qgsfeedback.h"
22#include "qgsgeometryutils.h"
23
24QList<Qgis::GeometryType> QgsGeometryAngleCheck::compatibleGeometryTypes() const
25{
27}
28
29QgsGeometryCheck::Result QgsGeometryAngleCheck::collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids ) const
30{
31 Q_UNUSED( messages )
32
33 QMap<QString, QSet<QVariant>> uniqueIds;
34 const QMap<QString, QgsFeatureIds> featureIds = ids.isEmpty() ? allLayerFeatureIds( featurePools ) : ids.toMap();
35 const QgsGeometryCheckerUtils::LayerFeatures layerFeatures( featurePools, featureIds, compatibleGeometryTypes(), feedback, context() );
36 for ( const QgsGeometryCheckerUtils::LayerFeature &layerFeature : layerFeatures )
37 {
38 if ( feedback && feedback->isCanceled() )
39 {
41 }
42
43 if ( context()->uniqueIdFieldIndex != -1 )
44 {
45 QgsGeometryCheck::Result result = checkUniqueId( layerFeature, uniqueIds );
47 {
48 return result;
49 }
50 }
51
52 const QgsAbstractGeometry *geom = layerFeature.geometry().constGet();
53 for ( int iPart = 0, nParts = geom->partCount(); iPart < nParts; ++iPart )
54 {
55 for ( int iRing = 0, nRings = geom->ringCount( iPart ); iRing < nRings; ++iRing )
56 {
57 bool closed = false;
58 const int nVerts = QgsGeometryCheckerUtils::polyLineSize( geom, iPart, iRing, &closed );
59 // Less than three points, no angles to check
60 if ( nVerts < 3 )
61 {
62 continue;
63 }
64 for ( int iVert = !closed; iVert < nVerts - !closed; ++iVert )
65 {
66 const QgsPoint &p1 = geom->vertexAt( QgsVertexId( iPart, iRing, ( iVert - 1 + nVerts ) % nVerts ) );
67 const QgsPoint &p2 = geom->vertexAt( QgsVertexId( iPart, iRing, iVert ) );
68 const QgsPoint &p3 = geom->vertexAt( QgsVertexId( iPart, iRing, ( iVert + 1 ) % nVerts ) );
69 QgsVector v21, v23;
70 try
71 {
72 v21 = QgsVector( p1.x() - p2.x(), p1.y() - p2.y() ).normalized();
73 v23 = QgsVector( p3.x() - p2.x(), p3.y() - p2.y() ).normalized();
74 }
75 catch ( const QgsException & )
76 {
77 // Zero length vectors
78 continue;
79 }
80
81 const double angle = std::acos( v21 * v23 ) / M_PI * 180.0;
82 if ( angle < mMinAngle )
83 {
84 errors.append( new QgsGeometryCheckError( this, layerFeature, p2, QgsVertexId( iPart, iRing, iVert ), angle ) );
85 }
86 }
87 }
88 }
89 }
91}
92
93void QgsGeometryAngleCheck::fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> & /*mergeAttributeIndices*/, Changes &changes ) const
94{
95 QgsFeaturePool *featurePool = featurePools[error->layerId()];
96 QgsFeature feature;
97 if ( !featurePool->getFeature( error->featureId(), feature ) )
98 {
99 error->setObsolete();
100 return;
101 }
102 QgsGeometry featureGeometry = feature.geometry();
103 QgsAbstractGeometry *geometry = featureGeometry.get();
104 const QgsVertexId vidx = error->vidx();
105
106 // Check if point still exists
107 if ( !vidx.isValid( geometry ) )
108 {
109 error->setObsolete();
110 return;
111 }
112
113 // Check if error still applies
114 const int n = QgsGeometryCheckerUtils::polyLineSize( geometry, vidx.part, vidx.ring );
115 if ( n == 0 )
116 {
117 error->setObsolete();
118 return;
119 }
120 const QgsPoint &p1 = geometry->vertexAt( QgsVertexId( vidx.part, vidx.ring, ( vidx.vertex - 1 + n ) % n ) );
121 const QgsPoint &p2 = geometry->vertexAt( vidx );
122 const QgsPoint &p3 = geometry->vertexAt( QgsVertexId( vidx.part, vidx.ring, ( vidx.vertex + 1 ) % n ) );
123 QgsVector v21, v23;
124 try
125 {
126 v21 = QgsVector( p1.x() - p2.x(), p1.y() - p2.y() ).normalized();
127 v23 = QgsVector( p3.x() - p2.x(), p3.y() - p2.y() ).normalized();
128 }
129 catch ( const QgsException & )
130 {
131 error->setObsolete();
132 return;
133 }
134 const double angle = std::acos( v21 * v23 ) / M_PI * 180.0;
135 if ( angle >= mMinAngle )
136 {
137 error->setObsolete();
138 return;
139 }
140
141 // Fix error
142 if ( method == NoChange )
143 {
144 error->setFixed( method );
145 }
146 else if ( method == DeleteNode )
147 {
148 if ( !QgsGeometryCheckerUtils::canDeleteVertex( geometry, vidx.part, vidx.ring ) )
149 {
150 error->setFixFailed( tr( "Resulting geometry is degenerate" ) );
151 }
152 else if ( !geometry->deleteVertex( error->vidx() ) )
153 {
154 error->setFixFailed( tr( "Failed to delete vertex" ) );
155 }
156 else
157 {
158 changes[error->layerId()][error->featureId()].append( Change( ChangeNode, ChangeRemoved, vidx ) );
159 // Avoid duplicate nodes as result of deleting spike vertex
160 if ( QgsGeometryUtils::sqrDistance2D( p1, p3 ) < ( mContext->tolerance * mContext->tolerance ) && QgsGeometryCheckerUtils::canDeleteVertex( geometry, vidx.part, vidx.ring ) && geometry->deleteVertex( error->vidx() ) ) // error->vidx points to p3 after removing p2
161 {
162 changes[error->layerId()][error->featureId()].append( Change( ChangeNode, ChangeRemoved, QgsVertexId( vidx.part, vidx.ring, ( vidx.vertex + 1 ) % n ) ) );
163 }
164 feature.setGeometry( featureGeometry );
165 featurePool->updateFeature( feature );
166 error->setFixed( method );
167 }
168 }
169 else
170 {
171 error->setFixFailed( tr( "Unknown method" ) );
172 }
173}
174
176{
177 static const QStringList methods = QStringList() << tr( "Delete node with small angle" ) << tr( "No action" );
178 return methods;
179}
180
182{
183 return factoryId();
184}
185
187{
188 return tr( "Minimal angle" );
189}
190
192{
193 return factoryDescription();
194}
195
200
205
210
212{
213 return QStringLiteral( "QgsGeometryAngleCheck" );
214}
215
@ Line
Lines.
Definition qgis.h:360
@ Polygon
Polygons.
Definition qgis.h:361
Abstract base class for all geometries.
virtual int ringCount(int part=0) const =0
Returns the number of rings of which this geometry is built.
virtual QgsPoint vertexAt(QgsVertexId id) const =0
Returns the point corresponding to a specified vertex id.
virtual int partCount() const =0
Returns count of parts contained in the geometry.
virtual bool deleteVertex(QgsVertexId position)=0
Deletes a vertex within the geometry.
Defines a QGIS exception class.
A feature pool is based on a vector layer and caches features.
virtual void updateFeature(QgsFeature &feature)=0
Updates a feature in this pool.
bool getFeature(QgsFeatureId id, QgsFeature &feature)
Retrieves the feature with the specified id into feature.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsGeometry geometry
Definition qgsfeature.h:69
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
Q_DECL_DEPRECATED QStringList resolutionMethods() const override
Returns a list of descriptions for available resolutions for errors.
QgsGeometryCheck::CheckType checkType() const override
Returns the check type.
QString description() const override
Returns a human readable description for this check.
static bool factoryIsCompatible(QgsVectorLayer *layer)
void fixError(const QMap< QString, QgsFeaturePool * > &featurePools, QgsGeometryCheckError *error, int method, const QMap< QString, int > &mergeAttributeIndices, Changes &changes) const override
Fixes the error error with the specified method.
QString id() const override
Returns an id for this check.
static QList< Qgis::GeometryType > factoryCompatibleGeometryTypes()
static QgsGeometryCheck::CheckType factoryCheckType()
QgsGeometryCheck::Result collectErrors(const QMap< QString, QgsFeaturePool * > &featurePools, QList< QgsGeometryCheckError * > &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids=LayerFeatureIds()) const override
The main worker method.
QList< Qgis::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
This represents an error reported by a geometry check.
const QgsVertexId & vidx() const
The id of the affected vertex.
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
void setFixed(int method)
Set the status to fixed and specify the method that has been used to fix the error.
void setFixFailed(const QString &reason)
Set the error status to failed and specify the reason for failure.
void setObsolete()
Set the error status to obsolete.
const QString & layerId() const
The id of the layer on which this error has been detected.
QMap< QString, QMap< QgsFeatureId, QList< QgsGeometryCheck::Change > > > Changes
A collection of changes.
const QgsGeometryCheckContext * mContext
@ ChangeNode
This change happens on node level.
CheckType
The type of a check.
@ FeatureNodeCheck
The check controls individual nodes.
QMap< QString, QgsFeatureIds > allLayerFeatureIds(const QMap< QString, QgsFeaturePool * > &featurePools) const
Returns all layers and feature ids.
Result checkUniqueId(const QgsGeometryCheckerUtils::LayerFeature layerFeature, QMap< QString, QSet< QVariant > > &uniqueIds) const
Checks that there are no duplicated unique IDs.
Result
Result of the geometry checker operation.
@ Canceled
User canceled calculation.
@ Success
Operation completed successfully.
@ ChangeRemoved
Something has been removed.
const QgsGeometryCheckContext * context() const
Returns the context.
A layer feature combination to uniquely identify and access a feature in a set of layers.
Contains a set of layers and feature ids in those layers to pass to a geometry check.
static bool canDeleteVertex(const QgsAbstractGeometry *geom, int iPart, int iRing)
static int polyLineSize(const QgsAbstractGeometry *geom, int iPart, int iRing, bool *isClosed=nullptr)
Returns the number of points in a polyline, accounting for duplicate start and end point if the polyl...
static Q_DECL_DEPRECATED double sqrDistance2D(double x1, double y1, double x2, double y2)
Returns the squared 2D distance between (x1, y1) and (x2, y2).
A geometry is the spatial representation of a feature.
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
Point geometry type, with support for z-dimension and m-values.
Definition qgspoint.h:49
double x
Definition qgspoint.h:52
double y
Definition qgspoint.h:53
Represents a vector layer which manages a vector based dataset.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
Represent a 2-dimensional vector.
Definition qgsvector.h:31
QgsVector normalized() const
Returns the vector's normalized (or "unit") vector (ie same angle but length of 1....
Definition qgsvector.cpp:29
Descripts a change to fix a geometry.
A list of layers and feature ids for each of these layers.
QMap< QString, QgsFeatureIds > toMap() const
Utility class for identifying a unique vertex within a geometry.
Definition qgsvertexid.h:30
int vertex
Vertex number.
Definition qgsvertexid.h:94
bool isValid() const
Returns true if the vertex id is valid.
Definition qgsvertexid.h:45
int part
Part number.
Definition qgsvertexid.h:88
int ring
Ring number.
Definition qgsvertexid.h:91