QGIS API Documentation 3.99.0-Master (357b655ed83)
Loading...
Searching...
No Matches
qgsalgorithmdifference.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmdifference.cpp
3 ---------------------
4 Date : April 2018
5 Copyright : (C) 2018 by Martin Dobias
6 Email : wonder dot sk at gmail dot com
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 "qgsoverlayutils.h"
19#include "qgsvectorlayer.h"
20
21#include <QString>
22
23using namespace Qt::StringLiterals;
24
26
27
28QString QgsDifferenceAlgorithm::name() const
29{
30 return u"difference"_s;
31}
32
33QString QgsDifferenceAlgorithm::displayName() const
34{
35 return QObject::tr( "Difference" );
36}
37
38QStringList QgsDifferenceAlgorithm::tags() const
39{
40 return QObject::tr( "difference,erase,not overlap" ).split( ',' );
41}
42
43QString QgsDifferenceAlgorithm::group() const
44{
45 return QObject::tr( "Vector overlay" );
46}
47
48QString QgsDifferenceAlgorithm::groupId() const
49{
50 return u"vectoroverlay"_s;
51}
52
53QString QgsDifferenceAlgorithm::shortHelpString() const
54{
55 return QObject::tr( "This algorithm extracts features from the Input layer that fall outside, or partially overlap, features in the Overlay layer. "
56 "Input layer features that partially overlap feature(s) in the Overlay layer are split along those features' boundary "
57 "and only the portions outside the Overlay layer features are retained." )
58 + u"\n\n"_s
59 + QObject::tr( "Attributes are not modified, although properties such as area or length of the features will "
60 "be modified by the difference operation. If such properties are stored as attributes, those attributes will have to "
61 "be manually updated." );
62}
63
64QString QgsDifferenceAlgorithm::shortDescription() const
65{
66 return QObject::tr( "Extracts features from an input layer that fall outside, or partially overlap, features in an overlay layer." );
67}
68
69bool QgsDifferenceAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const
70{
71 const QgsVectorLayer *layer = qobject_cast<const QgsVectorLayer *>( l );
72 if ( !layer )
73 return false;
74
75 return layer->isSpatial();
76}
77
78Qgis::ProcessingAlgorithmFlags QgsDifferenceAlgorithm::flags() const
79{
82 return f;
83}
84
85QgsProcessingAlgorithm *QgsDifferenceAlgorithm::createInstance() const
86{
87 return new QgsDifferenceAlgorithm();
88}
89
90void QgsDifferenceAlgorithm::initAlgorithm( const QVariantMap & )
91{
92 addParameter( new QgsProcessingParameterFeatureSource( u"INPUT"_s, QObject::tr( "Input layer" ) ) );
93 addParameter( new QgsProcessingParameterFeatureSource( u"OVERLAY"_s, QObject::tr( "Overlay layer" ) ) );
94 addParameter( new QgsProcessingParameterFeatureSink( u"OUTPUT"_s, QObject::tr( "Difference" ) ) );
95
96 auto gridSize = std::make_unique<QgsProcessingParameterNumber>( u"GRID_SIZE"_s, QObject::tr( "Grid size" ), Qgis::ProcessingNumberParameterType::Double, QVariant(), true, 0 );
97 gridSize->setFlags( gridSize->flags() | Qgis::ProcessingParameterFlag::Advanced );
98 addParameter( gridSize.release() );
99}
100
101
102QVariantMap QgsDifferenceAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
103{
104 std::unique_ptr<QgsFeatureSource> sourceA( parameterAsSource( parameters, u"INPUT"_s, context ) );
105 if ( !sourceA )
106 throw QgsProcessingException( invalidSourceError( parameters, u"INPUT"_s ) );
107
108 const std::unique_ptr<QgsFeatureSource> sourceB( parameterAsSource( parameters, u"OVERLAY"_s, context ) );
109 if ( !sourceB )
110 throw QgsProcessingException( invalidSourceError( parameters, u"OVERLAY"_s ) );
111
112 const Qgis::WkbType geomType = QgsWkbTypes::promoteNonPointTypesToMulti( sourceA->wkbType() );
113
114 QString dest;
115 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, u"OUTPUT"_s, context, dest, sourceA->fields(), geomType, sourceA->sourceCrs() ) );
116 if ( !sink )
117 throw QgsProcessingException( invalidSinkError( parameters, u"OUTPUT"_s ) );
118
119 QVariantMap outputs;
120 outputs.insert( u"OUTPUT"_s, dest );
121
122 long count = 0;
123 const long total = sourceA->featureCount();
124
125 QgsGeometryParameters geometryParameters;
126 if ( parameters.value( u"GRID_SIZE"_s ).isValid() )
127 {
128 geometryParameters.setGridSize( parameterAsDouble( parameters, u"GRID_SIZE"_s, context ) );
129 }
130
131 QgsOverlayUtils::difference( *sourceA, *sourceB, *sink, context, feedback, count, total, QgsOverlayUtils::OutputA, geometryParameters, QgsOverlayUtils::SanitizeFlag::DontPromotePointGeometryToMultiPoint );
132
133 sink->finalize();
134 return outputs;
135}
136
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
Definition qgis.h:3680
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:280
@ SupportsInPlaceEdits
Algorithm supports in-place editing.
Definition qgis.h:3661
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
Definition qgis.h:3834
@ Double
Double/float values.
Definition qgis.h:3875
Encapsulates parameters under which a geometry operation is performed.
void setGridSize(double size)
Sets the grid size which will be used to snap vertices of a geometry.
Base class for all map layer types.
Definition qgsmaplayer.h:83
Abstract base class for processing algorithms.
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.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
A feature sink output for processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
Represents a vector layer which manages a vector based dataset.
bool isSpatial() const final
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
static Qgis::WkbType promoteNonPointTypesToMulti(Qgis::WkbType type)
Promotes a WKB geometry type to its multi-type equivalent, with the exception of point geometry types...