25QString QgsClipAlgorithm::name()
const
27 return QStringLiteral(
"clip" );
37QString QgsClipAlgorithm::displayName()
const
39 return QObject::tr(
"Clip" );
42QStringList QgsClipAlgorithm::tags()
const
44 return QObject::tr(
"clip,intersect,intersection,mask" ).split(
',' );
47QString QgsClipAlgorithm::group()
const
49 return QObject::tr(
"Vector overlay" );
52QString QgsClipAlgorithm::groupId()
const
54 return QStringLiteral(
"vectoroverlay" );
57void QgsClipAlgorithm::initAlgorithm(
const QVariantMap & )
65QString QgsClipAlgorithm::shortHelpString()
const
67 return QObject::tr(
"This algorithm clips a vector layer using the features of an additional polygon layer. Only the parts of the features "
68 "in the Input layer that fall within the polygons of the Overlay layer will be added to the resulting layer." )
69 + QStringLiteral(
"\n\n" )
70 + QObject::tr(
"The attributes of the features are not modified, although properties such as area or length of the features will "
71 "be modified by the clipping operation. If such properties are stored as attributes, those attributes will have to "
72 "be manually updated." );
75QString QgsClipAlgorithm::shortDescription()
const
77 return QObject::tr(
"Clips a vector layer using the features of an additional polygon layer." );
80QgsClipAlgorithm *QgsClipAlgorithm::createInstance()
const
82 return new QgsClipAlgorithm();
85bool QgsClipAlgorithm::supportInPlaceEdit(
const QgsMapLayer *l )
const
87 const QgsVectorLayer *layer = qobject_cast<const QgsVectorLayer *>( l );
96 std::unique_ptr<QgsFeatureSource> featureSource( parameterAsSource( parameters, QStringLiteral(
"INPUT" ), context ) );
100 std::unique_ptr<QgsFeatureSource> maskSource( parameterAsSource( parameters, QStringLiteral(
"OVERLAY" ), context ) );
105 feedback->
pushWarning( QObject::tr(
"No spatial index exists for input layer, performance will be severely degraded" ) );
109 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, QStringLiteral(
"OUTPUT" ), context, dest, featureSource->fields(),
QgsWkbTypes::promoteNonPointTypesToMulti( featureSource->wkbType() ), featureSource->sourceCrs() ) );
115 QVector<QgsGeometry> clipGeoms;
125 outputs.insert( QStringLiteral(
"OUTPUT" ), dest );
127 if ( clipGeoms.isEmpty() )
131 bool singleClipFeature =
false;
133 if ( clipGeoms.length() > 1 )
136 if ( combinedClipGeom.
isEmpty() )
140 singleClipFeature =
false;
144 combinedClipGeom = clipGeoms.at( 0 );
145 singleClipFeature =
true;
150 engine->prepareGeometry();
155 const auto constClipGeoms = clipGeoms;
156 for (
const QgsGeometry &clipGeom : constClipGeoms )
169 if ( inputFeatures.isEmpty() )
173 if ( singleClipFeature )
174 step = 100.0 / inputFeatures.length();
176 const int current = 0;
177 const auto constInputFeatures = inputFeatures;
178 for (
const QgsFeature &inputFeature : constInputFeatures )
185 if ( !inputFeature.hasGeometry() )
188 if ( testedFeatureIds.contains( inputFeature.id() ) )
193 testedFeatureIds.insert( inputFeature.id() );
195 if ( !engine->intersects( inputFeature.geometry().constGet() ) )
199 if ( !engine->contains( inputFeature.geometry().constGet() ) )
201 const QgsGeometry currentGeometry = inputFeature.geometry();
202 newGeometry = combinedClipGeom.
intersection( currentGeometry );
213 newGeometry = inputFeature.geometry();
216 if ( !QgsOverlayUtils::sanitizeIntersectionResult( newGeometry, sinkType, QgsOverlayUtils::SanitizeFlag::DontPromotePointGeometryToMultiPoint ) )
226 if ( singleClipFeature )
230 if ( !singleClipFeature )
233 feedback->
setProgress( 100.0 *
static_cast<double>( i ) / clipGeoms.length() );
@ VectorPolygon
Vector polygon layers.
@ NotPresent
No spatial index exists for the source.
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
@ GeometryCollection
GeometryCollection.
@ SupportsInPlaceEdits
Algorithm supports in-place editing.
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...
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
bool isCanceled() const
Tells whether the operation has been canceled already.
void setProgress(double progress)
Sets the current progress for the feedback object.
A geometry is the spatial representation of a feature.
QgsGeometry difference(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing the points making up this geometry that do not make up other.
QString lastError() const
Returns an error string referring to the last error encountered either when this geometry was created...
QgsGeometry combine(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing all the points in this geometry and other (a union geometry operation...
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsGeometry intersection(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing the points shared by this geometry and other.
QgsGeometry symDifference(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing the points making up this geometry that do not make up other.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
static QgsGeometry unaryUnion(const QVector< QgsGeometry > &geometries, const QgsGeometryParameters ¶meters=QgsGeometryParameters())
Compute the unary union on a list of geometries.
Qgis::WkbType wkbType() const
Returns type of the geometry as a WKB type (point / linestring / polygon etc.)
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0, Qgis::GeosCreationFlags flags=Qgis::GeosCreationFlag::SkipEmptyInteriorRings)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
Base class for all map layer types.
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.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void pushWarning(const QString &warning)
Pushes a warning informational message from the 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::GeometryType geometryType(Qgis::WkbType type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
static Qgis::WkbType promoteNonPointTypesToMulti(Qgis::WkbType type)
Promotes a WKB geometry type to its multi-type equivalent, with the exception of point geometry types...
static Qgis::WkbType flatType(Qgis::WkbType type)
Returns the flat type for a WKB type.
QList< QgsFeature > QgsFeatureList
QSet< QgsFeatureId > QgsFeatureIds