QGIS API Documentation 3.43.0-Master (ac9f54ad1f7)
qgsalgorithmmultiunion.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmmultiunion.cpp
3 ------------------
4 begin : December 2021
5 copyright : (C) 2021 by Alexander Bruy
6 email : alexander dot bruy at gmail 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
20#include "qgsoverlayutils.h"
21#include "qgsvectorlayer.h"
22
24
25
26QString QgsMultiUnionAlgorithm::name() const
27{
28 return QStringLiteral( "multiunion" );
29}
30
31QString QgsMultiUnionAlgorithm::displayName() const
32{
33 return QObject::tr( "Union (multiple)" );
34}
35
36QStringList QgsMultiUnionAlgorithm::tags() const
37{
38 return QObject::tr( "union,overlap,not overlap" ).split( ',' );
39}
40
41QString QgsMultiUnionAlgorithm::group() const
42{
43 return QObject::tr( "Vector overlay" );
44}
45
46QString QgsMultiUnionAlgorithm::groupId() const
47{
48 return QStringLiteral( "vectoroverlay" );
49}
50
51QString QgsMultiUnionAlgorithm::shortHelpString() const
52{
53 return QObject::tr( "This algorithm checks overlaps between features within the Input layer and creates separate features for overlapping "
54 "and non-overlapping parts. The area of overlap will create as many identical overlapping features as there are "
55 "features that participate in that overlap." )
56 + QStringLiteral( "\n\n" )
57 + QObject::tr( "Multiple Overlay layers can also be used, in which case features from each layer are split at their overlap with features from "
58 "all other layers, creating a layer containing all the portions from both Input and Overlay layers. "
59 "The attribute table of the Union layer is filled with attribute values from the respective original layer "
60 "for non-overlapping features, and attribute values from both layers for overlapping features." );
61}
62
63QString QgsMultiUnionAlgorithm::shortDescription() const
64{
65 return QObject::tr( "Checks overlaps between features and creates separate features for overlapping and non-overlapping parts." );
66}
67
68Qgis::ProcessingAlgorithmDocumentationFlags QgsMultiUnionAlgorithm::documentationFlags() const
69{
71}
72
73QgsProcessingAlgorithm *QgsMultiUnionAlgorithm::createInstance() const
74{
75 return new QgsMultiUnionAlgorithm();
76}
77
78void QgsMultiUnionAlgorithm::initAlgorithm( const QVariantMap & )
79{
80 addParameter( new QgsProcessingParameterFeatureSource( QStringLiteral( "INPUT" ), QObject::tr( "Input layer" ) ) );
81 addParameter( new QgsProcessingParameterMultipleLayers( QStringLiteral( "OVERLAYS" ), QObject::tr( "Overlay layers" ), Qgis::ProcessingSourceType::VectorAnyGeometry, QVariant(), true ) );
82
83 auto prefix = std::make_unique<QgsProcessingParameterString>( QStringLiteral( "OVERLAY_FIELDS_PREFIX" ), QObject::tr( "Overlay fields prefix" ), QString(), false, true );
84 prefix->setFlags( prefix->flags() | Qgis::ProcessingParameterFlag::Advanced );
85 addParameter( prefix.release() );
86
87 addParameter( new QgsProcessingParameterFeatureSink( QStringLiteral( "OUTPUT" ), QObject::tr( "Union" ) ) );
88}
89
90QVariantMap QgsMultiUnionAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
91{
92 std::unique_ptr<QgsFeatureSource> sourceA( parameterAsSource( parameters, QStringLiteral( "INPUT" ), context ) );
93 if ( !sourceA )
94 throw QgsProcessingException( invalidSourceError( parameters, QStringLiteral( "INPUT" ) ) );
95
96 const QList<QgsMapLayer *> layers = parameterAsLayerList( parameters, QStringLiteral( "OVERLAYS" ), context );
97
98 // loop through overlay layers and check whether they are vectors
99 long totalLayerCount = 0;
100 for ( QgsMapLayer *layer : layers )
101 {
102 if ( feedback->isCanceled() )
103 break;
104
105 if ( !layer )
106 throw QgsProcessingException( QObject::tr( "Error retrieving map layer." ) );
107
108 if ( layer->type() != Qgis::LayerType::Vector )
109 throw QgsProcessingException( QObject::tr( "All layers must be vector layers!" ) );
110
111 totalLayerCount++;
112 }
113
114 const Qgis::WkbType geometryType = QgsWkbTypes::multiType( sourceA->wkbType() );
115 const QgsCoordinateReferenceSystem crs = sourceA->sourceCrs();
116 const QString overlayFieldsPrefix = parameterAsString( parameters, QStringLiteral( "OVERLAY_FIELDS_PREFIX" ), context );
117 std::unique_ptr<QgsFeatureSink> sink;
118 QVariantMap outputs;
119 bool ok;
120
121 if ( totalLayerCount == 0 )
122 {
123 // we are doing single layer union
124 QString dest;
125 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, QStringLiteral( "OUTPUT" ), context, dest, sourceA->fields(), geometryType, sourceA->sourceCrs(), QgsFeatureSink::RegeneratePrimaryKey ) );
126 if ( !sink )
127 throw QgsProcessingException( invalidSinkError( parameters, QStringLiteral( "OUTPUT" ) ) );
128
129 outputs.insert( QStringLiteral( "OUTPUT" ), dest );
130
131 QgsOverlayUtils::resolveOverlaps( *sourceA, *sink, feedback );
132 sink->finalize();
133 return outputs;
134 }
135 else
136 {
137 QgsProcessingMultiStepFeedback multiStepFeedback( totalLayerCount, feedback );
138 QgsVectorLayer *unionLayer = nullptr;
139 QgsFields fields;
140
141 long i = 0;
142 for ( QgsMapLayer *layer : layers )
143 {
144 if ( feedback->isCanceled() )
145 break;
146
147 multiStepFeedback.setCurrentStep( i );
148
149 if ( !layer )
150 continue;
151
152 QgsVectorLayer *overlayLayer = qobject_cast<QgsVectorLayer *>( layer );
153 if ( !overlayLayer )
154 continue;
155
156 if ( i == 0 )
157 {
158 QString id = QStringLiteral( "memory:" );
159 fields = QgsProcessingUtils::combineFields( sourceA->fields(), overlayLayer->fields(), overlayFieldsPrefix );
160 sink.reset( QgsProcessingUtils::createFeatureSink( id, context, fields, geometryType, crs, QVariantMap(), QStringList(), QStringList(), QgsFeatureSink::RegeneratePrimaryKey ) );
161 ok = makeUnion( *sourceA, *overlayLayer, *sink, context, &multiStepFeedback );
162
163 if ( !ok )
164 throw QgsProcessingException( QObject::tr( "Interrupted by user." ) );
165
166 unionLayer = qobject_cast<QgsVectorLayer *>( QgsProcessingUtils::mapLayerFromString( id, context ) );
167 }
168 else if ( i == totalLayerCount - 1 )
169 {
170 fields = QgsProcessingUtils::combineFields( unionLayer->fields(), overlayLayer->fields(), overlayFieldsPrefix );
171
172
173 QString dest;
174 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, QStringLiteral( "OUTPUT" ), context, dest, fields, geometryType, crs, QgsFeatureSink::RegeneratePrimaryKey ) );
175 if ( !sink )
176 throw QgsProcessingException( invalidSinkError( parameters, QStringLiteral( "OUTPUT" ) ) );
177
178 outputs.insert( QStringLiteral( "OUTPUT" ), dest );
179 ok = makeUnion( *unionLayer, *overlayLayer, *sink, context, &multiStepFeedback );
180 if ( !ok )
181 throw QgsProcessingException( QObject::tr( "Interrupted by user." ) );
182 }
183 else
184 {
185 QString id = QStringLiteral( "memory:" );
186 fields = QgsProcessingUtils::combineFields( unionLayer->fields(), overlayLayer->fields(), overlayFieldsPrefix );
187 sink.reset( QgsProcessingUtils::createFeatureSink( id, context, fields, geometryType, crs, QVariantMap(), QStringList(), QStringList(), QgsFeatureSink::RegeneratePrimaryKey ) );
188 ok = makeUnion( *unionLayer, *overlayLayer, *sink, context, &multiStepFeedback );
189 if ( !ok )
190 throw QgsProcessingException( QObject::tr( "Interrupted by user." ) );
191
192 unionLayer = qobject_cast<QgsVectorLayer *>( QgsProcessingUtils::mapLayerFromString( id, context ) );
193 }
194
195 i++;
196 }
197 }
198
199 return outputs;
200}
201
202bool QgsMultiUnionAlgorithm::makeUnion( const QgsFeatureSource &sourceA, const QgsFeatureSource &sourceB, QgsFeatureSink &sink, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
203{
204 const QList<int> fieldIndicesA = QgsProcessingUtils::fieldNamesToIndices( QStringList(), sourceA.fields() );
205 const QList<int> fieldIndicesB = QgsProcessingUtils::fieldNamesToIndices( QStringList(), sourceB.fields() );
206
207 long count = 0;
208 const long total = sourceA.featureCount() * 2 + sourceB.featureCount();
209
210 QgsOverlayUtils::intersection( sourceA, sourceB, sink, context, feedback, count, total, fieldIndicesA, fieldIndicesB );
211 if ( feedback->isCanceled() )
212 return false;
213
214 QgsOverlayUtils::difference( sourceA, sourceB, sink, context, feedback, count, total, QgsOverlayUtils::OutputAB );
215 if ( feedback->isCanceled() )
216 return false;
217
218 QgsOverlayUtils::difference( sourceB, sourceA, sink, context, feedback, count, total, QgsOverlayUtils::OutputBA );
219 return true;
220}
221
@ VectorAnyGeometry
Any vector layer with geometry.
@ RegeneratesPrimaryKey
Algorithm always drops any existing primary keys or FID values and regenerates them in outputs.
@ Vector
Vector layer.
QFlags< ProcessingAlgorithmDocumentationFlag > ProcessingAlgorithmDocumentationFlags
Flags describing algorithm behavior for documentation purposes.
Definition qgis.h:3496
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:256
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
Represents a coordinate reference system (CRS).
An interface for objects which accept features via addFeature(s) methods.
@ RegeneratePrimaryKey
This flag indicates, that a primary key field cannot be guaranteed to be unique and the sink should i...
An interface for objects which provide features via a getFeatures method.
virtual QgsFields fields() const =0
Returns the fields associated with features in the source.
virtual long long featureCount() const =0
Returns the number of features contained in the source, or -1 if the feature count is unknown.
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
Container of fields for a vector layer.
Definition qgsfields.h:46
Base class for all map layer types.
Definition qgsmaplayer.h:77
Abstract base class for processing algorithms.
Contains information about the context in which a processing algorithm is 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 parameter for processing algorithms which accepts multiple map layers.
static QList< int > fieldNamesToIndices(const QStringList &fieldNames, const QgsFields &fields)
Returns a list of field indices parsed from the given list of field names.
static QgsFields combineFields(const QgsFields &fieldsA, const QgsFields &fieldsB, const QString &fieldsBPrefix=QString())
Combines two field lists, avoiding duplicate field names (in a case-insensitive manner).
static QgsFeatureSink * createFeatureSink(QString &destination, QgsProcessingContext &context, const QgsFields &fields, Qgis::WkbType geometryType, const QgsCoordinateReferenceSystem &crs, const QVariantMap &createOptions=QVariantMap(), const QStringList &datasourceOptions=QStringList(), const QStringList &layerOptions=QStringList(), QgsFeatureSink::SinkFlags sinkFlags=QgsFeatureSink::SinkFlags(), QgsRemappingSinkDefinition *remappingDefinition=nullptr)
Creates a feature sink ready for adding features.
static QgsMapLayer * mapLayerFromString(const QString &string, QgsProcessingContext &context, bool allowLoadingNewLayers=true, QgsProcessingUtils::LayerHint typeHint=QgsProcessingUtils::LayerHint::UnknownType, QgsProcessing::LayerOptionsFlags flags=QgsProcessing::LayerOptionsFlags())
Interprets a string as a map layer within the supplied context.
Represents a vector layer which manages a vector based dataset.
static Qgis::WkbType multiType(Qgis::WkbType type)
Returns the multi type for a WKB type.
const QgsCoordinateReferenceSystem & crs