24using namespace Qt::StringLiterals;
28QString QgsGeometryByExpressionAlgorithm::name()
const
30 return u
"geometrybyexpression"_s;
33QString QgsGeometryByExpressionAlgorithm::displayName()
const
35 return QObject::tr(
"Geometry by expression" );
38QStringList QgsGeometryByExpressionAlgorithm::tags()
const
40 return QObject::tr(
"geometry,expression,create,modify,update" ).split(
',' );
43QString QgsGeometryByExpressionAlgorithm::group()
const
45 return QObject::tr(
"Vector geometry" );
48QString QgsGeometryByExpressionAlgorithm::groupId()
const
50 return u
"vectorgeometry"_s;
53QString QgsGeometryByExpressionAlgorithm::outputName()
const
55 return QObject::tr(
"Modified geometry" );
58QString QgsGeometryByExpressionAlgorithm::shortHelpString()
const
60 return QObject::tr(
"This algorithm updates existing geometries (or creates new geometries) for input "
61 "features by use of a QGIS expression. This allows complex geometry modifications "
62 "which can utilize all the flexibility of the QGIS expression engine to manipulate "
63 "and create geometries for output features.\n\n"
64 "For help with QGIS expression functions, see the inbuilt help for specific functions "
65 "which is available in the expression builder." );
68QString QgsGeometryByExpressionAlgorithm::shortDescription()
const
70 return QObject::tr(
"Updates existing geometries (or creates new geometries) for input "
71 "features by use of a QGIS expression." );
74QgsGeometryByExpressionAlgorithm *QgsGeometryByExpressionAlgorithm::createInstance()
const
76 return new QgsGeometryByExpressionAlgorithm();
79QList<int> QgsGeometryByExpressionAlgorithm::inputLayerTypes()
const
94void QgsGeometryByExpressionAlgorithm::initParameters(
const QVariantMap & )
96 addParameter(
new QgsProcessingParameterEnum( u
"OUTPUT_GEOMETRY"_s, QObject::tr(
"Output geometry type" ), QStringList() << QObject::tr(
"Polygon" ) << QObject::tr(
"Line" ) << QObject::tr(
"Point" ),
false, 0 ) );
104 const int geometryType = parameterAsInt( parameters, u
"OUTPUT_GEOMETRY"_s, context );
105 switch ( geometryType )
118 if ( parameterAsBoolean( parameters, u
"WITH_Z"_s, context ) )
122 if ( parameterAsBoolean( parameters, u
"WITH_M"_s, context ) )
127 mExpression =
QgsExpression( parameterAsString( parameters, u
"EXPRESSION"_s, context ) );
128 if ( mExpression.hasParserError() )
130 feedback->
reportError( mExpression.parserErrorString() );
134 mExpressionContext = createExpressionContext( parameters, context );
135 mExpression.prepare( &mExpressionContext );
143 mExpressionContext.setFeature( feature );
144 const QVariant value = mExpression.evaluate( &mExpressionContext );
146 if ( mExpression.hasEvalError() )
148 throw QgsProcessingException( QObject::tr(
"Evaluation error: %1" ).arg( mExpression.evalErrorString() ) );
157 if ( value.userType() == qMetaTypeId<QgsGeometry>() )
@ Vector
Tables (i.e. vector layers with or without geometry). When used for a sink this indicates the sink ha...
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
WkbType
The WKB type describes the number of dimensions a geometry has.
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
Handles parsing and evaluation of expressions (formerly called "search strings").
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
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.
virtual void reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
A boolean parameter for processing algorithms.
An enum based parameter for processing algorithms, allowing for selection from predefined values.
An expression parameter for processing algorithms.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
static Qgis::WkbType addM(Qgis::WkbType type)
Adds the m dimension to a WKB type and returns the new type.
static Qgis::WkbType addZ(Qgis::WkbType type)
Adds the z dimension to a WKB type and returns the new type.
QList< QgsFeature > QgsFeatureList