22 QString QgsExtentToLayerAlgorithm::name()
const 24 return QStringLiteral(
"extenttolayer" );
27 void QgsExtentToLayerAlgorithm::initAlgorithm(
const QVariantMap & )
33 QString QgsExtentToLayerAlgorithm::shortHelpString()
const 35 return QObject::tr(
"This algorithm creates a new vector layer that contains a single feature with geometry matching an extent parameter.\n\n" 36 "It can be used in models to convert an extent into a layer which can be used for other algorithms which require " 37 "a layer based input." );
40 QgsExtentToLayerAlgorithm *QgsExtentToLayerAlgorithm::createInstance()
const 42 return new QgsExtentToLayerAlgorithm();
48 QgsGeometry geom = parameterAsExtentGeometry( parameters, QStringLiteral(
"INPUT" ), context );
51 fields.
append(
QgsField( QStringLiteral(
"id" ), QVariant::Int ) );
54 std::unique_ptr< QgsFeatureSink > sink( parameterAsSink( parameters, QStringLiteral(
"OUTPUT" ), context, dest, fields,
QgsWkbTypes::Polygon, crs ) );
66 outputs.insert( QStringLiteral(
"OUTPUT" ), dest );
Use faster inserts, at the cost of updating the passed features to reflect changes made at the provid...
Base class for providing feedback from a processing algorithm.
void setProgress(double progress)
Sets the current progress for the feedback object.
Container of fields for a vector layer.
A geometry is the spatial representation of a feature.
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
const QgsCoordinateReferenceSystem & crs
A feature sink output for processing algorithms.
Custom exception class for processing related exceptions.
bool append(const QgsField &field, FieldOrigin origin=OriginProvider, int originIndex=-1)
Appends a field. The field must have unique name, otherwise it is rejected (returns false) ...
Encapsulate a field in an attribute table or data source.
A rectangular map extent parameter for processing algorithms.
This class represents a coordinate reference system (CRS).
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
Contains information about the context in which a processing algorithm is executed.