QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsalgorithmfixgeometryangle.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmfixgeometryangle.cpp
3 ---------------------
4 begin : June 2024
5 copyright : (C) 2024 by Jacky Volpes
6 email : jacky dot volpes at oslandia dot com
7***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19
24#include "qgsvectorfilewriter.h"
25#include "qgsvectorlayer.h"
26
28
29QString QgsFixGeometryAngleAlgorithm::name() const
30{
31 return QStringLiteral( "fixgeometryangle" );
32}
33
34QString QgsFixGeometryAngleAlgorithm::displayName() const
35{
36 return QObject::tr( "Delete small angles" );
37}
38
39QString QgsFixGeometryAngleAlgorithm::shortDescription() const
40{
41 return QObject::tr( "Deletes vertices detected with the \"Small angles\" algorithm from the \"Check geometry\" section." );
42}
43
44QStringList QgsFixGeometryAngleAlgorithm::tags() const
45{
46 return QObject::tr( "delete,vertex,fix,angle" ).split( ',' );
47}
48
49QString QgsFixGeometryAngleAlgorithm::group() const
50{
51 return QObject::tr( "Fix geometry" );
52}
53
54QString QgsFixGeometryAngleAlgorithm::groupId() const
55{
56 return QStringLiteral( "fixgeometry" );
57}
58
59QString QgsFixGeometryAngleAlgorithm::shortHelpString() const
60{
61 return QObject::tr( "This algorithm deletes vertices based on an error layer from the "
62 "\"Small angles\" algorithm in the \"Check geometry\" section.\n"
63 "When deletion of a vertex results in a duplicate vertex (when a spike vertex is deleted), "
64 "the duplicate vertex is deleted to keep a single vertex and preserve topology." );
65}
66
67QgsFixGeometryAngleAlgorithm *QgsFixGeometryAngleAlgorithm::createInstance() const
68{
69 return new QgsFixGeometryAngleAlgorithm();
70}
71
72void QgsFixGeometryAngleAlgorithm::initAlgorithm( const QVariantMap &configuration )
73{
74 Q_UNUSED( configuration )
75
77 QStringLiteral( "INPUT" ), QObject::tr( "Input layer" ), QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorPolygon ) << static_cast<int>( Qgis::ProcessingSourceType::VectorLine )
78 ) );
80 QStringLiteral( "ERRORS" ), QObject::tr( "Error layer" ), QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorPoint )
81 ) );
82 addParameter( new QgsProcessingParameterField(
83 QStringLiteral( "UNIQUE_ID" ), QObject::tr( "Field of original feature unique identifier" ),
84 QStringLiteral( "id" ), QStringLiteral( "ERRORS" )
85 ) );
86 addParameter( new QgsProcessingParameterField(
87 QStringLiteral( "PART_IDX" ), QObject::tr( "Field of part index" ),
88 QStringLiteral( "gc_partidx" ), QStringLiteral( "ERRORS" ),
90 ) );
91 addParameter( new QgsProcessingParameterField(
92 QStringLiteral( "RING_IDX" ), QObject::tr( "Field of ring index" ),
93 QStringLiteral( "gc_ringidx" ), QStringLiteral( "ERRORS" ),
95 ) );
96 addParameter( new QgsProcessingParameterField(
97 QStringLiteral( "VERTEX_IDX" ), QObject::tr( "Field of vertex index" ),
98 QStringLiteral( "gc_vertidx" ), QStringLiteral( "ERRORS" ),
100 ) );
101
102 addParameter( new QgsProcessingParameterFeatureSink(
103 QStringLiteral( "OUTPUT" ), QObject::tr( "Small angle fixed layer" ), Qgis::ProcessingSourceType::VectorAnyGeometry
104 ) );
105 addParameter( new QgsProcessingParameterFeatureSink(
106 QStringLiteral( "REPORT" ), QObject::tr( "Report layer from fixing small angles" ), Qgis::ProcessingSourceType::VectorPoint
107 ) );
108
109 auto tolerance = std::make_unique<QgsProcessingParameterNumber>(
110 QStringLiteral( "TOLERANCE" ), QObject::tr( "Tolerance" ), Qgis::ProcessingNumberParameterType::Integer, 8, false, 1, 13
111 );
112 tolerance->setFlags( tolerance->flags() | Qgis::ProcessingParameterFlag::Advanced );
113 tolerance->setHelp( QObject::tr( "The \"Tolerance\" advanced parameter defines the numerical precision of geometric operations, "
114 "given as an integer n, meaning that any difference smaller than 10⁻ⁿ (in map units) is considered zero." ) );
115 addParameter( tolerance.release() );
116}
117
118QVariantMap QgsFixGeometryAngleAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
119{
120 const std::unique_ptr<QgsProcessingFeatureSource> input( parameterAsSource( parameters, QStringLiteral( "INPUT" ), context ) );
121 if ( !input )
122 throw QgsProcessingException( invalidSourceError( parameters, QStringLiteral( "INPUT" ) ) );
123
124 const std::unique_ptr<QgsProcessingFeatureSource> errors( parameterAsSource( parameters, QStringLiteral( "ERRORS" ), context ) );
125 if ( !errors )
126 throw QgsProcessingException( invalidSourceError( parameters, QStringLiteral( "ERRORS" ) ) );
127
128 QgsProcessingMultiStepFeedback multiStepFeedback( 2, feedback );
129
130 const QString featIdFieldName = parameterAsString( parameters, QStringLiteral( "UNIQUE_ID" ), context );
131 const QString partIdxFieldName = parameterAsString( parameters, QStringLiteral( "PART_IDX" ), context );
132 const QString ringIdxFieldName = parameterAsString( parameters, QStringLiteral( "RING_IDX" ), context );
133 const QString vertexIdxFieldName = parameterAsString( parameters, QStringLiteral( "VERTEX_IDX" ), context );
134
135 // Verify that input fields exists
136 if ( errors->fields().indexFromName( featIdFieldName ) == -1 )
137 throw QgsProcessingException( QObject::tr( "Field %1 does not exist in the error layer." ).arg( featIdFieldName ) );
138 if ( errors->fields().indexFromName( partIdxFieldName ) == -1 )
139 throw QgsProcessingException( QObject::tr( "Field %1 does not exist in the error layer." ).arg( partIdxFieldName ) );
140 if ( errors->fields().indexFromName( ringIdxFieldName ) == -1 )
141 throw QgsProcessingException( QObject::tr( "Field %1 does not exist in the error layer." ).arg( ringIdxFieldName ) );
142 if ( errors->fields().indexFromName( vertexIdxFieldName ) == -1 )
143 throw QgsProcessingException( QObject::tr( "Field %1 does not exist in the error layer." ).arg( vertexIdxFieldName ) );
144 int inputIdFieldIndex = input->fields().indexFromName( featIdFieldName );
145 if ( inputIdFieldIndex == -1 )
146 throw QgsProcessingException( QObject::tr( "Field %1 does not exist in input layer." ).arg( featIdFieldName ) );
147
148 const QgsField inputFeatIdField = input->fields().at( inputIdFieldIndex );
149 if ( inputFeatIdField.type() != errors->fields().at( errors->fields().indexFromName( featIdFieldName ) ).type() )
150 throw QgsProcessingException( QObject::tr( "Field %1 does not have the same type as in the error layer." ).arg( featIdFieldName ) );
151
152 QString dest_output;
153 const std::unique_ptr<QgsFeatureSink> sink_output( parameterAsSink(
154 parameters, QStringLiteral( "OUTPUT" ), context, dest_output, input->fields(), input->wkbType(), input->sourceCrs()
155 ) );
156 if ( !sink_output )
157 throw QgsProcessingException( invalidSinkError( parameters, QStringLiteral( "OUTPUT" ) ) );
158
159 QString dest_report;
160 QgsFields reportFields = errors->fields();
161 reportFields.append( QgsField( QStringLiteral( "report" ), QMetaType::QString ) );
162 reportFields.append( QgsField( QStringLiteral( "error_fixed" ), QMetaType::Bool ) );
163 const std::unique_ptr<QgsFeatureSink> sink_report( parameterAsSink(
164 parameters, QStringLiteral( "REPORT" ), context, dest_report, reportFields, errors->wkbType(), errors->sourceCrs()
165 ) );
166 if ( !sink_report )
167 throw QgsProcessingException( invalidSinkError( parameters, QStringLiteral( "REPORT" ) ) );
168
169 QgsGeometryCheckContext checkContext = QgsGeometryCheckContext( mTolerance, input->sourceCrs(), context.transformContext(), context.project() );
170 QVariantMap configurationCheck;
171
172 // maximum limit, we know that every feature to process is an error (otherwise it is not treated and marked as obsolete)
173 configurationCheck.insert( "minAngle", std::numeric_limits<double>::max() );
174 const QgsGeometryAngleCheck check( &checkContext, configurationCheck );
175
176 std::unique_ptr<QgsVectorLayer> fixedLayer( input->materialize( QgsFeatureRequest() ) );
178 QMap<QString, QgsFeaturePool *> featurePools;
179 featurePools.insert( fixedLayer->id(), &featurePool );
180
181 QgsFeature errorFeature, inputFeature, testDuplicateIdFeature;
182 QgsFeatureIterator errorFeaturesIt = errors->getFeatures();
183 QList<QgsGeometryCheck::Changes> changesList;
184 QgsFeature reportFeature;
185 reportFeature.setFields( reportFields );
186 long long progression = 0;
187 long long totalProgression = errors->featureCount();
188 multiStepFeedback.setCurrentStep( 1 );
189 multiStepFeedback.setProgressText( QObject::tr( "Fixing errors..." ) );
190 while ( errorFeaturesIt.nextFeature( errorFeature ) )
191 {
192 if ( feedback->isCanceled() )
193 break;
194
195 progression++;
196 multiStepFeedback.setProgress( static_cast<double>( static_cast<long double>( progression ) / totalProgression ) * 100 );
197 reportFeature.setGeometry( errorFeature.geometry() );
198
199 QString idValue = errorFeature.attribute( featIdFieldName ).toString();
200 if ( inputFeatIdField.type() == QMetaType::QString )
201 idValue = "'" + idValue + "'";
202
203 QgsFeatureIterator it = fixedLayer->getFeatures( QgsFeatureRequest().setFilterExpression( "\"" + featIdFieldName + "\" = " + idValue ) );
204 if ( !it.nextFeature( inputFeature ) || !inputFeature.isValid() )
205 reportFeature.setAttributes( errorFeature.attributes() << QObject::tr( "Source feature not found or invalid" ) << false );
206
207 else if ( it.nextFeature( testDuplicateIdFeature ) )
208 throw QgsProcessingException( QObject::tr( "More than one feature found in input layer with value %1 in unique field %2" ).arg( idValue, featIdFieldName ) );
209
210 else if ( inputFeature.geometry().isNull() )
211 reportFeature.setAttributes( errorFeature.attributes() << QObject::tr( "Feature geometry is null" ) << false );
212
213 else if ( QgsGeometryCheckerUtils::getGeomPart( inputFeature.geometry().constGet(), errorFeature.attribute( partIdxFieldName ).toInt() ) == nullptr )
214 reportFeature.setAttributes( errorFeature.attributes() << QObject::tr( "Feature geometry part is null" ) << false );
215
216 else
217 {
219 &check,
220 QgsGeometryCheckerUtils::LayerFeature( &featurePool, inputFeature, &checkContext, false ),
221 errorFeature.geometry().asPoint(),
223 errorFeature.attribute( partIdxFieldName ).toInt(),
224 errorFeature.attribute( ringIdxFieldName ).toInt(),
225 errorFeature.attribute( vertexIdxFieldName ).toInt()
226 )
227 );
228 for ( const QgsGeometryCheck::Changes &changes : std::as_const( changesList ) )
229 checkError.handleChanges( changes );
230
232 check.fixError( featurePools, &checkError, QgsGeometryAngleCheck::ResolutionMethod::DeleteNode, QMap<QString, int>(), changes );
233 changesList << changes;
234
235 QString resolutionMessage = checkError.resolutionMessage();
236 if ( checkError.status() == QgsGeometryCheckError::StatusObsolete )
237 resolutionMessage = QObject::tr( "Error is obsolete" );
238
239 reportFeature.setAttributes( errorFeature.attributes() << resolutionMessage << ( checkError.status() == QgsGeometryCheckError::StatusFixed ) );
240 }
241
242 if ( !sink_report->addFeature( reportFeature, QgsFeatureSink::FastInsert ) )
243 throw QgsProcessingException( writeFeatureError( sink_report.get(), parameters, QStringLiteral( "REPORT" ) ) );
244 }
245 multiStepFeedback.setProgress( 100 );
246
247 progression = 0;
248 totalProgression = fixedLayer->featureCount();
249 multiStepFeedback.setCurrentStep( 2 );
250 multiStepFeedback.setProgressText( QObject::tr( "Exporting fixed layer..." ) );
251 QgsFeature fixedFeature;
252 QgsFeatureIterator fixedFeaturesIt = fixedLayer->getFeatures();
253 while ( fixedFeaturesIt.nextFeature( fixedFeature ) )
254 {
255 if ( feedback->isCanceled() )
256 break;
257
258 progression++;
259 multiStepFeedback.setProgress( static_cast<double>( static_cast<long double>( progression ) / totalProgression ) * 100 );
260 if ( !sink_output->addFeature( fixedFeature, QgsFeatureSink::FastInsert ) )
261 throw QgsProcessingException( writeFeatureError( sink_output.get(), parameters, QStringLiteral( "OUTPUT" ) ) );
262 }
263 multiStepFeedback.setProgress( 100 );
264
265 QVariantMap outputs;
266 outputs.insert( QStringLiteral( "OUTPUT" ), dest_output );
267 outputs.insert( QStringLiteral( "REPORT" ), dest_report );
268
269 return outputs;
270}
271
272bool QgsFixGeometryAngleAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
273{
274 mTolerance = parameterAsInt( parameters, QStringLiteral( "TOLERANCE" ), context );
275
276 return true;
277}
278
279Qgis::ProcessingAlgorithmFlags QgsFixGeometryAngleAlgorithm::flags() const
280{
282}
283
@ VectorAnyGeometry
Any vector layer with geometry.
Definition qgis.h:3533
@ VectorPoint
Vector point layers.
Definition qgis.h:3534
@ VectorPolygon
Vector polygon layers.
Definition qgis.h:3536
@ VectorLine
Vector line layers.
Definition qgis.h:3535
@ Numeric
Accepts numeric fields.
Definition qgis.h:3818
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
Definition qgis.h:3609
@ NoThreading
Algorithm is not thread safe and cannot be run in a background thread, e.g. for algorithms which mani...
Definition qgis.h:3588
@ RequiresProject
The algorithm requires that a valid QgsProject is available from the processing context in order to e...
Definition qgis.h:3596
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
Definition qgis.h:3763
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
Wraps a request for features to a vector layer (or directly its vector data provider).
@ FastInsert
Use faster inserts, at the cost of updating the passed features to reflect changes made at the provid...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsAttributes attributes
Definition qgsfeature.h:67
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
void setFields(const QgsFields &fields, bool initAttributes=false)
Assigns a field map with the feature to allow attribute access by attribute name.
QgsGeometry geometry
Definition qgsfeature.h:69
bool isValid() const
Returns the validity of this feature.
Q_INVOKABLE QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
Encapsulate a field in an attribute table or data source.
Definition qgsfield.h:54
QMetaType::Type type
Definition qgsfield.h:61
Container of fields for a vector layer.
Definition qgsfields.h:46
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
Definition qgsfields.cpp:73
Base configuration for geometry checks.
This represents an error reported by a geometry check.
@ StatusFixed
The error is fixed.
@ StatusObsolete
The error is obsolete because of other modifications.
Status status() const
The status of the error.
QString resolutionMessage() const
A message with details, how the error has been resolved.
virtual bool handleChanges(const QgsGeometryCheck::Changes &changes)
Apply a list of changes.
QMap< QString, QMap< QgsFeatureId, QList< QgsGeometryCheck::Change > > > Changes
A collection of changes.
A layer feature combination to uniquely identify and access a feature in a set of layers.
static QgsAbstractGeometry * getGeomPart(QgsAbstractGeometry *geom, int partIdx)
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsPointXY asPoint() const
Returns the contents of the geometry as a 2-dimensional point.
virtual Qgis::ProcessingAlgorithmFlags flags() const
Returns the flags indicating how and when the algorithm operates and should be exposed to users.
Contains information about the context in which a processing algorithm is executed.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context.
QgsProject * project() const
Returns the project in which the algorithm is being executed.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
Processing feedback object for multi-step operations.
A feature sink output for processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
A vector layer or feature source field parameter for processing algorithms.
A feature pool based on a vector data provider.
Utility class for identifying a unique vertex within a geometry.
Definition qgsvertexid.h:30