QGIS API Documentation 4.1.0-Master (5bf3c20f3c9)
Loading...
Searching...
No Matches
qgsalgorithmextenttolayer.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmextenttolayer.cpp
3 ---------------------
4 begin : April 2017
5 copyright : (C) 2017 by Nyall Dawson
6 email : nyall dot dawson 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 <QString>
21
22using namespace Qt::StringLiterals;
23
25
26QString QgsExtentToLayerAlgorithm::name() const
27{
28 return u"extenttolayer"_s;
29}
30
31void QgsExtentToLayerAlgorithm::initAlgorithm( const QVariantMap & )
32{
33 addParameter( new QgsProcessingParameterExtent( u"INPUT"_s, QObject::tr( "Extent" ) ) );
34 addParameter( new QgsProcessingParameterFeatureSink( u"OUTPUT"_s, QObject::tr( "Extent" ), Qgis::ProcessingSourceType::VectorPolygon ) );
35}
36
37QString QgsExtentToLayerAlgorithm::shortHelpString() const
38{
39 return QObject::tr(
40 "This algorithm creates a new vector layer that contains a single feature with geometry matching an extent parameter.\n\n"
41 "It can be used in models to convert an extent into a layer which can be used for other algorithms which require "
42 "a layer based input."
43 );
44}
45
46QString QgsExtentToLayerAlgorithm::shortDescription() const
47{
48 return QObject::tr( "Creates a vector layer that contains a single feature with geometry matching an extent parameter." );
49}
50
51QgsExtentToLayerAlgorithm *QgsExtentToLayerAlgorithm::createInstance() const
52{
53 return new QgsExtentToLayerAlgorithm();
54}
55
56QVariantMap QgsExtentToLayerAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
57{
58 const QgsCoordinateReferenceSystem crs = parameterAsExtentCrs( parameters, u"INPUT"_s, context );
59 const QgsGeometry geom = parameterAsExtentGeometry( parameters, u"INPUT"_s, context );
60
61 QgsFields fields;
62 fields.append( QgsField( u"id"_s, QMetaType::Type::Int ) );
63
64 QString dest;
65 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, u"OUTPUT"_s, context, dest, fields, Qgis::WkbType::Polygon, crs ) );
66 if ( !sink )
67 throw QgsProcessingException( invalidSinkError( parameters, u"OUTPUT"_s ) );
68
69 QgsFeature f;
70 f.setAttributes( QgsAttributes() << 1 );
71 f.setGeometry( geom );
72 if ( !sink->addFeature( f, QgsFeatureSink::FastInsert ) )
73 throw QgsProcessingException( writeFeatureError( sink.get(), parameters, u"OUTPUT"_s ) );
74
75 sink->finalize();
76 feedback->setProgress( 100 );
77
78 QVariantMap outputs;
79 outputs.insert( u"OUTPUT"_s, dest );
80 return outputs;
81}
82
@ VectorPolygon
Vector polygon layers.
Definition qgis.h:3650
@ Polygon
Polygon.
Definition qgis.h:298
A vector of attributes.
Represents a coordinate reference system (CRS).
@ 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
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
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
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
A geometry is the spatial representation of a feature.
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 rectangular map extent parameter for processing algorithms.
A feature sink output for processing algorithms.