QGIS API Documentation
3.10.0-A Coruña (6c816b4204)
|
A collection of utilities for working with parameters when running a processing algorithm. More...
#include <qgsprocessingparameters.h>
Static Public Member Functions | |
static QString | descriptionFromName (const QString &name) |
Creates an autogenerated parameter description from a parameter name. More... | |
static bool | isDynamic (const QVariantMap ¶meters, const QString &name) |
Returns true if the parameter with matching name is a dynamic parameter, and must be evaluated once for every input feature processed. More... | |
static bool | parameterAsBool (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a static boolean value. More... | |
static bool | parameterAsBool (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a static boolean value. More... | |
static bool | parameterAsBoolean (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a static boolean value. More... | |
static bool | parameterAsBoolean (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a static boolean value. More... | |
static QColor | parameterAsColor (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Returns the color associated with an point parameter value, or an invalid color if the parameter was not set. More... | |
static QColor | parameterAsColor (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Returns the color associated with an color parameter value, or an invalid color if the parameter was not set. More... | |
static QString | parameterAsCompatibleSourceLayerPath (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context, const QStringList &compatibleFormats, const QString &preferredFormat=QString("shp"), QgsProcessingFeedback *feedback=nullptr) |
Evaluates the parameter with matching definition to a source vector layer file path of compatible format. More... | |
static QString | parameterAsCompatibleSourceLayerPathAndLayerName (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context, const QStringList &compatibleFormats, const QString &preferredFormat=QString("shp"), QgsProcessingFeedback *feedback=nullptr, QString *layerName=nullptr) |
Evaluates the parameter with matching definition to a source vector layer file path and layer name of compatible format. More... | |
static QgsCoordinateReferenceSystem | parameterAsCrs (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a coordinate reference system. More... | |
static QgsCoordinateReferenceSystem | parameterAsCrs (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a coordinate reference system. More... | |
static double | parameterAsDouble (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a static double value. More... | |
static double | parameterAsDouble (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a static double value. More... | |
static int | parameterAsEnum (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a enum value. More... | |
static int | parameterAsEnum (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a enum value. More... | |
static QList< int > | parameterAsEnums (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to list of enum values. More... | |
static QList< int > | parameterAsEnums (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to list of enum values. More... | |
static QString | parameterAsExpression (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to an expression. More... | |
static QString | parameterAsExpression (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definitionand value to an expression. More... | |
static QgsRectangle | parameterAsExtent (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem()) |
Evaluates the parameter with matching definition to a rectangular extent. More... | |
static QgsRectangle | parameterAsExtent (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem()) |
Evaluates the parameter with matching definition and value to a rectangular extent. More... | |
static QgsCoordinateReferenceSystem | parameterAsExtentCrs (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Returns the coordinate reference system associated with an extent parameter value. More... | |
static QgsGeometry | parameterAsExtentGeometry (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem()) |
Evaluates the parameter with matching definition to a rectangular extent, and returns a geometry covering this extent. More... | |
static QStringList | parameterAsFields (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a list of fields. More... | |
static QStringList | parameterAsFields (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a list of fields. More... | |
static QString | parameterAsFile (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a file/folder name. More... | |
static QString | parameterAsFile (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a file/folder name. More... | |
static QStringList | parameterAsFileList (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a list of files (for QgsProcessingParameterMultipleLayers in QgsProcessing:TypeFile mode). More... | |
static QStringList | parameterAsFileList (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a list of files (for QgsProcessingParameterMultipleLayers in QgsProcessing:TypeFile mode). More... | |
static QString | parameterAsFileOutput (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a file based output destination. More... | |
static QString | parameterAsFileOutput (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a file based output destination. More... | |
static int | parameterAsInt (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a static integer value. More... | |
static int | parameterAsInt (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a static integer value. More... | |
static QList< int > | parameterAsInts (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a list of integer values. More... | |
static QList< int > | parameterAsInts (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a list of integer values. More... | |
static QgsMapLayer * | parameterAsLayer (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a map layer. More... | |
static QgsMapLayer * | parameterAsLayer (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a map layer. More... | |
static QList< QgsMapLayer * > | parameterAsLayerList (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a list of map layers. More... | |
static QList< QgsMapLayer * > | parameterAsLayerList (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a list of map layers. More... | |
static QgsPrintLayout * | parameterAsLayout (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a print layout. More... | |
static QgsPrintLayout * | parameterAsLayout (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a print layout. More... | |
static QgsLayoutItem * | parameterAsLayoutItem (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context, QgsPrintLayout *layout) |
Evaluates the parameter with matching definition to a print layout item, taken from the specified layout. More... | |
static QgsLayoutItem * | parameterAsLayoutItem (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context, QgsPrintLayout *layout) |
Evaluates the parameter with matching definition and value to a print layout, taken from the specified layout. More... | |
static QVariantList | parameterAsMatrix (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a matrix/table of values. More... | |
static QVariantList | parameterAsMatrix (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a matrix/table of values. More... | |
static QgsMeshLayer * | parameterAsMeshLayer (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a mesh layer. More... | |
static QgsMeshLayer * | parameterAsMeshLayer (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a mesh layer. More... | |
static QString | parameterAsOutputLayer (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a output layer destination. More... | |
static QString | parameterAsOutputLayer (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a output layer destination. More... | |
static QgsPointXY | parameterAsPoint (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem()) |
Evaluates the parameter with matching definition to a point. More... | |
static QgsPointXY | parameterAsPoint (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem()) |
Evaluates the parameter with matching definition and value to a point. More... | |
static QgsCoordinateReferenceSystem | parameterAsPointCrs (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Returns the coordinate reference system associated with an point parameter value. More... | |
static QgsCoordinateReferenceSystem | parameterAsPointCrs (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Returns the coordinate reference system associated with an point parameter value. More... | |
static QList< double > | parameterAsRange (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a range of values. More... | |
static QList< double > | parameterAsRange (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a range of values. More... | |
static QgsRasterLayer * | parameterAsRasterLayer (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a raster layer. More... | |
static QgsRasterLayer * | parameterAsRasterLayer (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a raster layer. More... | |
static QgsFeatureSink * | parameterAsSink (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsFields &fields, QgsWkbTypes::Type geometryType, const QgsCoordinateReferenceSystem &crs, QgsProcessingContext &context, QString &destinationIdentifier, QgsFeatureSink::SinkFlags sinkFlags=nullptr) |
Evaluates the parameter with matching definition to a feature sink. More... | |
static QgsFeatureSink * | parameterAsSink (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsFields &fields, QgsWkbTypes::Type geometryType, const QgsCoordinateReferenceSystem &crs, QgsProcessingContext &context, QString &destinationIdentifier, QgsFeatureSink::SinkFlags sinkFlags=nullptr) |
Evaluates the parameter with matching definition and value to a feature sink. More... | |
static QgsProcessingFeatureSource * | parameterAsSource (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a feature source. More... | |
static QgsProcessingFeatureSource * | parameterAsSource (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a feature source. More... | |
static QString | parameterAsString (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a static string value. More... | |
static QString | parameterAsString (const QgsProcessingParameterDefinition *definition, const QVariant &value, const QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a static string value. More... | |
static QgsVectorLayer * | parameterAsVectorLayer (const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context) |
Evaluates the parameter with matching definition to a vector layer. More... | |
static QgsVectorLayer * | parameterAsVectorLayer (const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context) |
Evaluates the parameter with matching definition and value to a vector layer. More... | |
static QgsProcessingParameterDefinition * | parameterFromScriptCode (const QString &code) |
Creates a new QgsProcessingParameterDefinition using the configuration from a supplied script code string. More... | |
static QgsProcessingParameterDefinition * | parameterFromVariantMap (const QVariantMap &map) |
Creates a new QgsProcessingParameterDefinition using the configuration from a supplied variant map. More... | |
A collection of utilities for working with parameters when running a processing algorithm.
Parameters are stored in a QVariantMap and referenced by a unique string key. The QVariants in parameters are not usually accessed directly, and instead the high level API provided through QgsProcessingParameters parameterAsString(), parameterAsDouble() are used instead.
Parameters are evaluated using a provided QgsProcessingContext, allowing the evaluation to understand available map layers and expression contexts (for expression based parameters).
Definition at line 614 of file qgsprocessingparameters.h.
|
static |
Creates an autogenerated parameter description from a parameter name.
Definition at line 1764 of file qgsprocessingparameters.cpp.
|
static |
Returns true
if the parameter with matching name is a dynamic parameter, and must be evaluated once for every input feature processed.
Definition at line 56 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a static boolean value.
Definition at line 342 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a static boolean value.
Definition at line 358 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a static boolean value.
Definition at line 350 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a static boolean value.
Definition at line 374 of file qgsprocessingparameters.cpp.
|
static |
Returns the color associated with an point parameter value, or an invalid color if the parameter was not set.
Definition at line 1642 of file qgsprocessingparameters.cpp.
|
static |
Returns the color associated with an color parameter value, or an invalid color if the parameter was not set.
Definition at line 1650 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a source vector layer file path of compatible format.
If the parameter is evaluated to an existing layer, and that layer is not of the format listed in the compatibleFormats argument, then the layer will first be exported to a compatible format in a temporary location. The function will then return the path to that temporary file.
compatibleFormats should consist entirely of lowercase file extensions, e.g. 'shp'.
The preferredFormat argument is used to specify to desired file extension to use when a temporary layer export is required. This defaults to shapefiles, because shapefiles are the future (don't believe the geopackage hype!).
When an algorithm is capable of handling multi-layer input files (such as Geopackage), it is preferable to use parameterAsCompatibleSourceLayerPathAndLayerName() which may avoid conversion in more situations.
Definition at line 555 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a source vector layer file path and layer name of compatible format.
If the parameter is evaluated to an existing layer, and that layer is not of the format listed in the compatibleFormats argument, then the layer will first be exported to a compatible format in a temporary location. The function will then return the path to that temporary file.
compatibleFormats should consist entirely of lowercase file extensions, e.g. 'shp'.
The preferredFormat argument is used to specify to desired file extension to use when a temporary layer export is required. This defaults to shapefiles, because shapefiles are the future (don't believe the geopackage hype!).
This method should be preferred over parameterAsCompatibleSourceLayerPath() when an algorithm is able to correctly handle files with multiple layers. Unlike parameterAsCompatibleSourceLayerPath(), it will not force a conversion in this case and will return the target layer name in the layerName argument.
definition | associated parameter definition |
parameters | input parameter value map |
context | processing context |
compatibleFormats | a list of lowercase file extensions compatible with the algorithm |
preferredFormat | preferred format extension to use if conversion if required |
feedback | feedback object |
layerName | will be set to the target layer name for multi-layer sources (e.g. Geopackage) |
Definition at line 560 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a coordinate reference system.
Definition at line 772 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a coordinate reference system.
Definition at line 780 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a static double value.
Definition at line 125 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a static double value.
Definition at line 133 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a enum value.
Definition at line 251 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a enum value.
Definition at line 259 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to list of enum values.
Definition at line 273 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to list of enum values.
Definition at line 281 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to an expression.
Definition at line 97 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definitionand value to an expression.
Definition at line 105 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a rectangular extent.
If crs is set, and the original coordinate reference system of the parameter can be determined, then the extent will be automatically reprojected so that it is in the specified crs. In this case the extent of the reproject rectangle will be returned.
Definition at line 844 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a rectangular extent.
If crs is set, and the original coordinate reference system of the parameter can be determined, then the extent will be automatically reprojected so that it is in the specified crs. In this case the extent of the reproject rectangle will be returned.
Definition at line 853 of file qgsprocessingparameters.cpp.
|
static |
Returns the coordinate reference system associated with an extent parameter value.
Definition at line 1086 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a rectangular extent, and returns a geometry covering this extent.
If crs is set, and the original coordinate reference system of the parameter can be determined, then the extent will be automatically reprojected so that it is in the specified crs. Unlike parameterAsExtent(), the reprojected rectangle returned by this function will no longer be a rectangle itself (i.e. this method returns the geometry of the actual reprojected rectangle, while parameterAsExtent() returns just the extent of the reprojected rectangle).
Definition at line 968 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a list of fields.
Definition at line 1542 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a list of fields.
Definition at line 1551 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a file/folder name.
Definition at line 1281 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a file/folder name.
Definition at line 1292 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a list of files (for QgsProcessingParameterMultipleLayers in QgsProcessing:TypeFile mode).
Definition at line 1437 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a list of files (for QgsProcessingParameterMultipleLayers in QgsProcessing:TypeFile mode).
Definition at line 1483 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a file based output destination.
Definition at line 719 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a file based output destination.
Definition at line 729 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a static integer value.
Definition at line 152 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a static integer value.
Definition at line 160 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a list of integer values.
Definition at line 194 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a list of integer values.
Definition at line 202 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a map layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 573 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a map layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 581 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a list of map layers.
Definition at line 1342 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a list of map layers.
Definition at line 1350 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a print layout.
Definition at line 1592 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a print layout.
Definition at line 1600 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a print layout item, taken from the specified layout.
Definition at line 1616 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a print layout, taken from the specified layout.
Definition at line 1624 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a matrix/table of values.
Tables are collapsed to a 1 dimensional list.
Definition at line 1303 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a matrix/table of values.
Tables are collapsed to a 1 dimensional list.
Definition at line 1311 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a mesh layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 640 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a mesh layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 645 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a output layer destination.
Definition at line 650 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a output layer destination.
Definition at line 660 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a point.
If crs is set then the point will be automatically reprojected so that it is in the specified crs.
Definition at line 1163 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a point.
If crs is set then the point will be automatically reprojected so that it is in the specified crs.
Definition at line 1171 of file qgsprocessingparameters.cpp.
|
static |
Returns the coordinate reference system associated with an point parameter value.
Definition at line 1247 of file qgsprocessingparameters.cpp.
|
static |
Returns the coordinate reference system associated with an point parameter value.
Definition at line 1253 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a range of values.
Definition at line 1491 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a range of values.
Definition at line 1499 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a raster layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 630 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a raster layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 635 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a feature sink.
The fields, geometryType and crs parameters dictate the properties of the resulting feature sink.
Sinks will either be taken from context's active project, or created from external providers and stored temporarily in the context. The destinationIdentifier argument will be set to a string which can be used to retrieve the layer corresponding to the sink, e.g. via calling QgsProcessingUtils::mapLayerFromString().
This function creates a new object and the caller takes responsibility for deleting the returned object.
Definition at line 390 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a feature sink.
The fields, geometryType and crs parameters dictate the properties of the resulting feature sink.
Sinks will either be taken from context's active project, or created from external providers and stored temporarily in the context. The destinationIdentifier argument will be set to a string which can be used to retrieve the layer corresponding to the sink, e.g. via calling QgsProcessingUtils::mapLayerFromString().
This function creates a new object and the caller takes responsibility for deleting the returned object.
Definition at line 403 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a feature source.
Sources will either be taken from context's active project, or loaded from external sources and stored temporarily in the context.
This function creates a new object and the caller takes responsibility for deleting the returned object.
Definition at line 467 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a feature source.
Sources will either be taken from context's active project, or loaded from external sources and stored temporarily in the context.
This function creates a new object and the caller takes responsibility for deleting the returned object.
Definition at line 475 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a static string value.
Definition at line 65 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a static string value.
Definition at line 73 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition to a vector layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 762 of file qgsprocessingparameters.cpp.
|
static |
Evaluates the parameter with matching definition and value to a vector layer.
Layers will either be taken from context's active project, or loaded from external sources and stored temporarily in the context. In either case, callers do not need to handle deletion of the returned layer.
Definition at line 767 of file qgsprocessingparameters.cpp.
|
static |
Creates a new QgsProcessingParameterDefinition using the configuration from a supplied script code string.
The caller takes responsibility for deleting the returned object.
Definition at line 1771 of file qgsprocessingparameters.cpp.
|
static |
Creates a new QgsProcessingParameterDefinition using the configuration from a supplied variant map.
The caller takes responsibility for deleting the returned object.
Definition at line 1689 of file qgsprocessingparameters.cpp.