QGIS API Documentation 4.1.0-Master (5bf3c20f3c9)
Loading...
Searching...
No Matches
qgsalgorithmcheckgeometrylineintersection.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmcheckgeometrylineintersection.cpp
3 ---------------------
4 begin : April 2025
5 copyright : (C) 2025 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
23#include "qgspoint.h"
25#include "qgsvectorlayer.h"
26
27#include <QString>
28
29using namespace Qt::StringLiterals;
30
32
33QString QgsGeometryCheckLineIntersectionAlgorithm::name() const
34{
35 return u"checkgeometrylineintersection"_s;
36}
37
38QString QgsGeometryCheckLineIntersectionAlgorithm::displayName() const
39{
40 return QObject::tr( "Lines intersecting each other" );
41}
42
43QString QgsGeometryCheckLineIntersectionAlgorithm::shortDescription() const
44{
45 return QObject::tr( "Detects intersections between different lines." );
46}
47
48QStringList QgsGeometryCheckLineIntersectionAlgorithm::tags() const
49{
50 return QObject::tr( "check,geometry,line,intersection" ).split( ',' );
51}
52
53QString QgsGeometryCheckLineIntersectionAlgorithm::group() const
54{
55 return QObject::tr( "Check geometry" );
56}
57
58QString QgsGeometryCheckLineIntersectionAlgorithm::groupId() const
59{
60 return u"checkgeometry"_s;
61}
62
63QString QgsGeometryCheckLineIntersectionAlgorithm::shortHelpString() const
64{
65 return QObject::tr(
66 "This algorithm checks intersections between line geometries.\n"
67 "Intersections between two different lines are errors."
68 );
69}
70
71Qgis::ProcessingAlgorithmFlags QgsGeometryCheckLineIntersectionAlgorithm::flags() const
72{
74}
75
76QgsGeometryCheckLineIntersectionAlgorithm *QgsGeometryCheckLineIntersectionAlgorithm::createInstance() const
77{
78 return new QgsGeometryCheckLineIntersectionAlgorithm();
79}
80
81void QgsGeometryCheckLineIntersectionAlgorithm::initAlgorithm( const QVariantMap &configuration )
82{
83 Q_UNUSED( configuration )
84
85 addParameter( new QgsProcessingParameterFeatureSource( u"INPUT"_s, QObject::tr( "Input layer" ), QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorLine ) ) );
86 addParameter( new QgsProcessingParameterField( u"UNIQUE_ID"_s, QObject::tr( "Unique feature identifier" ), QString(), u"INPUT"_s ) );
87 addParameter( new QgsProcessingParameterFeatureSink( u"ERRORS"_s, QObject::tr( "Intersection errors" ), Qgis::ProcessingSourceType::VectorPoint ) );
88 addParameter( new QgsProcessingParameterFeatureSink( u"OUTPUT"_s, QObject::tr( "Intersecting feature" ), Qgis::ProcessingSourceType::VectorAnyGeometry, QVariant(), true, false ) );
89
90 auto tolerance = std::make_unique<QgsProcessingParameterNumber>( u"TOLERANCE"_s, QObject::tr( "Tolerance" ), Qgis::ProcessingNumberParameterType::Integer, 8, false, 1, 13 );
91 tolerance->setFlags( tolerance->flags() | Qgis::ProcessingParameterFlag::Advanced );
92 tolerance->setHelp(
93 QObject::tr(
94 "The \"Tolerance\" advanced parameter defines the numerical precision of geometric operations, "
95 "given as an integer n, meaning that any difference smaller than 10⁻ⁿ (in map units) is considered zero."
96 )
97 );
98 addParameter( tolerance.release() );
99}
100
101bool QgsGeometryCheckLineIntersectionAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
102{
103 mTolerance = parameterAsInt( parameters, u"TOLERANCE"_s, context );
104
105 return true;
106}
107
108QgsFields QgsGeometryCheckLineIntersectionAlgorithm::outputFields()
109{
110 QgsFields fields;
111 fields.append( QgsField( u"gc_layerid"_s, QMetaType::QString ) );
112 fields.append( QgsField( u"gc_layername"_s, QMetaType::QString ) );
113 fields.append( QgsField( u"gc_partidx"_s, QMetaType::Int ) );
114 fields.append( QgsField( u"gc_ringidx"_s, QMetaType::Int ) );
115 fields.append( QgsField( u"gc_vertidx"_s, QMetaType::Int ) );
116 fields.append( QgsField( u"gc_errorx"_s, QMetaType::Double ) );
117 fields.append( QgsField( u"gc_errory"_s, QMetaType::Double ) );
118 fields.append( QgsField( u"gc_error"_s, QMetaType::QString ) );
119 return fields;
120}
121
122QVariantMap QgsGeometryCheckLineIntersectionAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
123{
124 QString dest_output;
125 QString dest_errors;
126 const std::unique_ptr<QgsProcessingFeatureSource> input( parameterAsSource( parameters, u"INPUT"_s, context ) );
127 if ( !input )
128 throw QgsProcessingException( invalidSourceError( parameters, u"INPUT"_s ) );
129
130 const QString uniqueIdFieldName( parameterAsString( parameters, u"UNIQUE_ID"_s, context ) );
131 const int uniqueIdFieldIdx = input->fields().indexFromName( uniqueIdFieldName );
132 if ( uniqueIdFieldIdx == -1 )
133 throw QgsProcessingException( QObject::tr( "Missing field %1 in input layer" ).arg( uniqueIdFieldName ) );
134
135 const QgsField uniqueIdField = input->fields().at( uniqueIdFieldIdx );
136
137 QgsFields fields = outputFields();
138 fields.append( uniqueIdField );
139
140 const std::unique_ptr<QgsFeatureSink> sink_output( parameterAsSink( parameters, u"OUTPUT"_s, context, dest_output, fields, input->wkbType(), input->sourceCrs() ) );
141
142 const std::unique_ptr<QgsFeatureSink> sink_errors( parameterAsSink( parameters, u"ERRORS"_s, context, dest_errors, fields, Qgis::WkbType::Point, input->sourceCrs() ) );
143 if ( !sink_errors )
144 throw QgsProcessingException( invalidSinkError( parameters, u"ERRORS"_s ) );
145
146 QgsProcessingMultiStepFeedback multiStepFeedback( 3, feedback );
147
148 QgsGeometryCheckContext checkContext = QgsGeometryCheckContext( mTolerance, input->sourceCrs(), context.transformContext(), context.project(), uniqueIdFieldIdx );
149
150 // Test detection
151 QList<QgsGeometryCheckError *> checkErrors;
152 QStringList messages;
153
154 const QgsGeometryLineIntersectionCheck check( &checkContext, QVariantMap() );
155
156 multiStepFeedback.setCurrentStep( 1 );
157 feedback->setProgressText( QObject::tr( "Preparing features…" ) );
158 QMap<QString, QgsFeaturePool *> checkerFeaturePools;
159
160 std::unique_ptr<QgsVectorLayer> inputLayer( input->materialize( QgsFeatureRequest() ) );
162 checkerFeaturePools.insert( inputLayer->id(), &featurePool );
163
164 multiStepFeedback.setCurrentStep( 2 );
165 feedback->setProgressText( QObject::tr( "Collecting errors…" ) );
166 QgsGeometryCheck::Result res = check.collectErrors( checkerFeaturePools, checkErrors, messages, feedback );
168 {
169 feedback->pushInfo( QObject::tr( "Errors collected successfully." ) );
170 }
171 else if ( res == QgsGeometryCheck::Result::Canceled )
172 {
173 throw QgsProcessingException( QObject::tr( "Operation was canceled." ) );
174 }
176 {
177 throw QgsProcessingException( QObject::tr( "Field '%1' contains non-unique values and can not be used as unique ID." ).arg( uniqueIdFieldName ) );
178 }
179
180 multiStepFeedback.setCurrentStep( 3 );
181 feedback->setProgressText( QObject::tr( "Exporting errors…" ) );
182 const double step { checkErrors.size() > 0 ? 100.0 / checkErrors.size() : 1 };
183 long i = 0;
184 feedback->setProgress( 0.0 );
185
186 for ( const QgsGeometryCheckError *error : checkErrors )
187 {
188 if ( feedback->isCanceled() )
189 break;
190
191 QgsFeature f;
192 QgsAttributes attrs = f.attributes();
193
194 attrs
195 << error->layerId()
196 << inputLayer->name()
197 << error->vidx().part
198 << error->vidx().ring
199 << error->vidx().vertex
200 << error->location().x()
201 << error->location().y()
202 << error->value().toString()
203 << inputLayer->getFeature( error->featureId() ).attribute( uniqueIdField.name() );
204 f.setAttributes( attrs );
205
206 f.setGeometry( error->geometry() );
207 if ( sink_output && !sink_output->addFeature( f, QgsFeatureSink::FastInsert ) )
208 throw QgsProcessingException( writeFeatureError( sink_output.get(), parameters, u"OUTPUT"_s ) );
209
210 f.setGeometry( QgsGeometry::fromPoint( QgsPoint( error->location().x(), error->location().y() ) ) );
211 if ( !sink_errors->addFeature( f, QgsFeatureSink::FastInsert ) )
212 throw QgsProcessingException( writeFeatureError( sink_errors.get(), parameters, u"ERRORS"_s ) );
213
214 i++;
215 feedback->setProgress( 100.0 * step * static_cast<double>( i ) );
216 }
217
218 // cleanup memory of the pointed data
219 for ( const QgsGeometryCheckError *error : checkErrors )
220 {
221 delete error;
222 }
223
224 QVariantMap outputs;
225 if ( sink_output )
226 outputs.insert( u"OUTPUT"_s, dest_output );
227 outputs.insert( u"ERRORS"_s, dest_errors );
228
229 return outputs;
230}
231
@ VectorAnyGeometry
Any vector layer with geometry.
Definition qgis.h:3647
@ VectorPoint
Vector point layers.
Definition qgis.h:3648
@ VectorLine
Vector line layers.
Definition qgis.h:3649
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
Definition qgis.h:3724
@ Point
Point.
Definition qgis.h:296
@ NoThreading
Algorithm is not thread safe and cannot be run in a background thread, e.g. for algorithms which mani...
Definition qgis.h:3703
@ RequiresProject
The algorithm requires that a valid QgsProject is available from the processing context in order to e...
Definition qgis.h:3711
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
Definition qgis.h:3880
A vector of attributes.
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:60
QgsAttributes attributes
Definition qgsfeature.h:69
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:56
void setProgress(double progress)
Sets the current progress for the feedback object.
Definition qgsfeedback.h:65
Encapsulate a field in an attribute table or data source.
Definition qgsfield.h:56
QString name
Definition qgsfield.h:65
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:75
Base configuration for geometry checks.
This represents an error reported by a geometry check.
Result
Result of the geometry checker operation.
@ Canceled
User canceled calculation.
@ DuplicatedUniqueId
Found duplicated unique ID value.
@ Success
Operation completed successfully.
static QgsGeometry fromPoint(const QgsPoint &point)
Creates a new geometry from a QgsPoint object.
Point geometry type, with support for z-dimension and m-values.
Definition qgspoint.h:53
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.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
virtual void setProgressText(const QString &text)
Sets a progress report text string.
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.