3d__tessellate.md
```
Tessellate (3d:tessellate)
This algorithm tessellates a polygon geometry layer, dividing the geometries into triangular components.
The output layer consists of multipolygon geometries for each input feature, with each multipolygon consisting of multiple triangle component polygons.
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterFeatureSource
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProcessingFeatureSourceDefinition
- QgsProperty
- QgsVectorLayer
OUTPUT: Tessellated
Parameter type: QgsProcessingParameterFeatureSink
Accepted data types:
- str: destination vector file, e.g. 'd:/test.shp'
- str: 'memory:' to store result in temporary memory layer
- str: using vector provider ID prefix and destination URI, e.g. 'postgres:…' to store result in PostGIS table
- QgsProcessingOutputLayerDefinition
- QgsProperty
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputVectorLayer>
Tessellated
```
gdal__aspect.md
```
Aspect (gdal:aspect)
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterRasterLayer
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProperty
- QgsRasterLayer
BAND: Band number
Parameter type: QgsProcessingParameterBand
Accepted data types:
- int
- QgsProperty
TRIG_ANGLE: Return trigonometric angle instead of azimuth
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
ZERO_FLAT: Return 0 for flat instead of -9999
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
COMPUTE_EDGES: Compute edges
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
ZEVENBERGEN: Use Zevenbergen&Thorne formula instead of the Horn's one
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
OPTIONS: Additional creation options
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
EXTRA: Additional command-line parameters
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
OUTPUT: Aspect
Parameter type: QgsProcessingParameterRasterDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputRasterLayer>
Aspect
```
gdal__assignprojection.md
```
Assign projection (gdal:assignprojection)
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterRasterLayer
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProperty
- QgsRasterLayer
CRS: Desired CRS
Parameter type: QgsProcessingParameterCrs
Accepted data types:
- str: 'ProjectCrs'
- str: CRS auth ID (e.g. 'EPSG:3111')
- str: CRS PROJ4 (e.g. 'PROJ4:…')
- str: CRS WKT (e.g. 'WKT:…')
- str: layer ID. CRS of layer is used.
- str: layer name. CRS of layer is used.
- str: layer source. CRS of layer is used.
- QgsCoordinateReferenceSystem
- QgsMapLayer: CRS of layer is used
- QgsProcessingFeatureSourceDefinition: CRS of source is used
- QgsProperty
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputRasterLayer>
Layer with projection
```
gdal__buffervectors.md
```
Buffer vectors (gdal:buffervectors)
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterFeatureSource
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProcessingFeatureSourceDefinition
- QgsProperty
- QgsVectorLayer
GEOMETRY: Geometry column name
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
DISTANCE: Buffer distance
Parameter type: QgsProcessingParameterDistance
Accepted data types:
- int
- float
- QgsProperty
FIELD: Dissolve by attribute
Parameter type: QgsProcessingParameterField
Accepted data types:
- str
- QgsProperty
DISSOLVE: Dissolve all results
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
EXPLODE_COLLECTIONS: Produce one feature for each geometry in any kind of geometry collection in the source file
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
OPTIONS: Additional creation options
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
OUTPUT: Buffer
Parameter type: QgsProcessingParameterVectorDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputVectorLayer>
Buffer
```
gdal__buildvirtualraster.md
```
Build virtual raster (gdal:buildvirtualraster)
----------------
Input parameters
----------------
INPUT: Input layers
Parameter type: QgsProcessingParameterMultipleLayers
Accepted data types:
- list[str]: list of layer IDs
- list[str]: list of layer names
- list[str]: list of layer sources
- list[QgsMapLayer]
- QgsProperty
RESOLUTION: Resolution
Parameter type: QgsProcessingParameterEnum
Available values:
- 0: Average
- 1: Highest
- 2: Lowest
Accepted data types:
- int
- str: as string representation of int, e.g. '1'
- QgsProperty
SEPARATE: Place each input file into a separate band
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
PROJ_DIFFERENCE: Allow projection difference
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
ADD_ALPHA: Add alpha mask band to VRT when source raster has none
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
ASSIGN_CRS: Override projection for the output file
Parameter type: QgsProcessingParameterCrs
Accepted data types:
- str: 'ProjectCrs'
- str: CRS auth ID (e.g. 'EPSG:3111')
- str: CRS PROJ4 (e.g. 'PROJ4:…')
- str: CRS WKT (e.g. 'WKT:…')
- str: layer ID. CRS of layer is used.
- str: layer name. CRS of layer is used.
- str: layer source. CRS of layer is used.
- QgsCoordinateReferenceSystem
- QgsMapLayer: CRS of layer is used
- QgsProcessingFeatureSourceDefinition: CRS of source is used
- QgsProperty
RESAMPLING: Resampling algorithm
Parameter type: QgsProcessingParameterEnum
Available values:
- 0: Nearest Neighbour
- 1: Bilinear
- 2: Cubic Convolution
- 3: B-Spline Convolution
- 4: Lanczos Windowed Sinc
- 5: Average
- 6: Mode
Accepted data types:
- int
- str: as string representation of int, e.g. '1'
- QgsProperty
SRC_NODATA: Nodata value(s) for input bands (space separated)
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
EXTRA: Additional command-line parameters
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
OUTPUT: Virtual
Parameter type: ParameterVrtDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputRasterLayer>
Virtual
```
gdal__buildvirtualvector.md
```
Build virtual vector (gdal:buildvirtualvector)
This algorithm creates a virtual layer that contains a set of vector layers.
The output virtual layer will not be opened in the current project.
----------------
Input parameters
----------------
INPUT: Input datasources
Parameter type: QgsProcessingParameterMultipleLayers
Accepted data types:
- list[str]: list of layer IDs
- list[str]: list of layer names
- list[str]: list of layer sources
- list[QgsMapLayer]
- QgsProperty
UNIONED: Create "unioned" VRT
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
OUTPUT: Virtual vector
Parameter type: ParameterVectorVrtDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputVectorLayer>
Virtual vector
VRT_STRING: <QgsProcessingOutputString>
Virtual string
```
gdal__cliprasterbyextent.md
```
Clip raster by extent (gdal:cliprasterbyextent)
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterRasterLayer
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProperty
- QgsRasterLayer
PROJWIN: Clipping extent
Parameter type: QgsProcessingParameterExtent
Accepted data types:
- str: as comma delimited list of x min, x max, y min, y max. E.g. '4,10,101,105'
- str: layer ID. Extent of layer is used.
- str: layer name. Extent of layer is used.
- str: layer source. Extent of layer is used.
- QgsMapLayer: Extent of layer is used
- QgsProcessingFeatureSourceDefinition: Extent of source is used
- QgsProperty
- QgsRectangle
- QgsReferencedRectangle
- QgsGeometry: bounding box of geometry is used
NODATA: Assign a specified nodata value to output bands
Parameter type: QgsProcessingParameterNumber
Accepted data types:
- int
- float
- QgsProperty
OPTIONS: Additional creation options
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
DATA_TYPE: Output data type
Parameter type: QgsProcessingParameterEnum
Available values:
- 0: Use Input Layer Data Type
- 1: Byte
- 2: Int16
- 3: UInt16
- 4: UInt32
- 5: Int32
- 6: Float32
- 7: Float64
- 8: CInt16
- 9: CInt32
- 10: CFloat32
- 11: CFloat64
Accepted data types:
- int
- str: as string representation of int, e.g. '1'
- QgsProperty
EXTRA: Additional command-line parameters
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
OUTPUT: Clipped (extent)
Parameter type: QgsProcessingParameterRasterDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputRasterLayer>
Clipped (extent)
```
gdal__cliprasterbymasklayer.md
```
Clip raster by mask layer (gdal:cliprasterbymasklayer)
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterRasterLayer
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProperty
- QgsRasterLayer
MASK: Mask layer
Parameter type: QgsProcessingParameterFeatureSource
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProcessingFeatureSourceDefinition
- QgsProperty
- QgsVectorLayer
SOURCE_CRS: Source CRS
Parameter type: QgsProcessingParameterCrs
Accepted data types:
- str: 'ProjectCrs'
- str: CRS auth ID (e.g. 'EPSG:3111')
- str: CRS PROJ4 (e.g. 'PROJ4:…')
- str: CRS WKT (e.g. 'WKT:…')
- str: layer ID. CRS of layer is used.
- str: layer name. CRS of layer is used.
- str: layer source. CRS of layer is used.
- QgsCoordinateReferenceSystem
- QgsMapLayer: CRS of layer is used
- QgsProcessingFeatureSourceDefinition: CRS of source is used
- QgsProperty
TARGET_CRS: Target CRS
Parameter type: QgsProcessingParameterCrs
Accepted data types:
- str: 'ProjectCrs'
- str: CRS auth ID (e.g. 'EPSG:3111')
- str: CRS PROJ4 (e.g. 'PROJ4:…')
- str: CRS WKT (e.g. 'WKT:…')
- str: layer ID. CRS of layer is used.
- str: layer name. CRS of layer is used.
- str: layer source. CRS of layer is used.
- QgsCoordinateReferenceSystem
- QgsMapLayer: CRS of layer is used
- QgsProcessingFeatureSourceDefinition: CRS of source is used
- QgsProperty
NODATA: Assign a specified nodata value to output bands
Parameter type: QgsProcessingParameterNumber
Accepted data types:
- int
- float
- QgsProperty
ALPHA_BAND: Create an output alpha band
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
CROP_TO_CUTLINE: Match the extent of the clipped raster to the extent of the mask layer
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
KEEP_RESOLUTION: Keep resolution of input raster
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
SET_RESOLUTION: Set output file resolution
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
X_RESOLUTION: X Resolution to output bands
Parameter type: QgsProcessingParameterNumber
Accepted data types:
- int
- float
- QgsProperty
Y_RESOLUTION: Y Resolution to output bands
Parameter type: QgsProcessingParameterNumber
Accepted data types:
- int
- float
- QgsProperty
MULTITHREADING: Use multithreaded warping implementation
Parameter type: QgsProcessingParameterBoolean
Accepted data types:
- bool
- int
- str
- QgsProperty
OPTIONS: Additional creation options
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
DATA_TYPE: Output data type
Parameter type: QgsProcessingParameterEnum
Available values:
- 0: Use Input Layer Data Type
- 1: Byte
- 2: Int16
- 3: UInt16
- 4: UInt32
- 5: Int32
- 6: Float32
- 7: Float64
- 8: CInt16
- 9: CInt32
- 10: CFloat32
- 11: CFloat64
Accepted data types:
- int
- str: as string representation of int, e.g. '1'
- QgsProperty
EXTRA: Additional command-line parameters
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
OUTPUT: Clipped (mask)
Parameter type: QgsProcessingParameterRasterDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputRasterLayer>
Clipped (mask)
```
gdal__clipvectorbyextent.md
```
Clip vector by extent (gdal:clipvectorbyextent)
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterFeatureSource
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProcessingFeatureSourceDefinition
- QgsProperty
- QgsVectorLayer
EXTENT: Clipping extent
Parameter type: QgsProcessingParameterExtent
Accepted data types:
- str: as comma delimited list of x min, x max, y min, y max. E.g. '4,10,101,105'
- str: layer ID. Extent of layer is used.
- str: layer name. Extent of layer is used.
- str: layer source. Extent of layer is used.
- QgsMapLayer: Extent of layer is used
- QgsProcessingFeatureSourceDefinition: Extent of source is used
- QgsProperty
- QgsRectangle
- QgsReferencedRectangle
- QgsGeometry: bounding box of geometry is used
OPTIONS: Additional creation options
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
OUTPUT: Clipped (extent)
Parameter type: QgsProcessingParameterVectorDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputVectorLayer>
Clipped (extent)
```
gdal__clipvectorbypolygon.md
```
Clip vector by mask layer (gdal:clipvectorbypolygon)
----------------
Input parameters
----------------
INPUT: Input layer
Parameter type: QgsProcessingParameterFeatureSource
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProcessingFeatureSourceDefinition
- QgsProperty
- QgsVectorLayer
MASK: Mask layer
Parameter type: QgsProcessingParameterFeatureSource
Accepted data types:
- str: layer ID
- str: layer name
- str: layer source
- QgsProcessingFeatureSourceDefinition
- QgsProperty
- QgsVectorLayer
OPTIONS: Additional creation options
Parameter type: QgsProcessingParameterString
Accepted data types:
- str
- QgsProperty
OUTPUT: Clipped (mask)
Parameter type: QgsProcessingParameterVectorDestination
Accepted data types:
- str
- QgsProperty
- QgsProcessingOutputLayerDefinition
----------------
Outputs
----------------
OUTPUT: <QgsProcessingOutputVectorLayer>
Clipped (mask)
```
gdal__extractprojection.md
gdal__gridinversedistance.md
gdal__gridinversedistancenearestneighbor.md
gdal__gridnearestneighbor.md
gdal__importvectorintopostgisdatabaseavailableconnections.md
gdal__importvectorintopostgisdatabasenewconnection.md
gdal__pointsalonglines.md
gdal__rastercalculator.md
gdal__rasterize_over_fixed_value.md
gdal__tpitopographicpositionindex.md
gdal__triterrainruggednessindex.md
grass7__i.colors.enhance.md
grass7__i.eb.hsebal01.coords.md
grass7__i.eb.soilheatflux.md
grass7__i.image.mosaic.md
grass7__i.landsat.acca.md
grass7__i.landsat.toar.md
grass7__i.topo.coor.ill.md
grass7__r.blend.combine.md
grass7__r.buffer.lowmem.md
grass7__r.category.out.md
grass7__r.colors.stddev.md
grass7__r.grow.distance.md
grass7__r.horizon.height.md
grass7__r.in.lidar.info.md
grass7__r.li.cwed.ascii.md
grass7__r.li.dominance.ascii.md
grass7__r.li.dominance.md
grass7__r.li.edgedensity.ascii.md
grass7__r.li.edgedensity.md
grass7__r.li.mpa.ascii.md
grass7__r.li.mps.ascii.md
grass7__r.li.padcv.ascii.md
grass7__r.li.padrange.ascii.md
grass7__r.li.padsd.ascii.md
grass7__r.li.patchdensity.ascii.md
grass7__r.li.patchdensity.md
grass7__r.li.patchnum.ascii.md
grass7__r.li.pielou.ascii.md
grass7__r.li.renyi.ascii.md
grass7__r.li.richness.ascii.md
grass7__r.li.shannon.ascii.md
grass7__r.li.shape.ascii.md
grass7__r.li.simpson.ascii.md
grass7__r.mapcalc.simple.md
grass7__r.random.cells.md
grass7__r.random.surface.md
grass7__r.reclass.area.md
grass7__r.regression.line.md
grass7__r.regression.multi.md
grass7__r.relief.scaling.md
grass7__r.resamp.bspline.md
grass7__r.resamp.filter.md
grass7__r.resamp.interp.md
grass7__r.resamp.stats.md
grass7__r.series.accumulate.md
grass7__r.series.interp.md
grass7__r.sim.sediment.md
grass7__r.slope.aspect.md
grass7__r.solute.transport.md
grass7__r.stats.quantile.out.md
grass7__r.stats.quantile.rast.md
grass7__r.stream.extract.md
grass7__r.sun.incidout.md
grass7__r.sun.insoltime.md
grass7__r.sunmask.datetime.md
grass7__r.sunmask.position.md
grass7__r.surf.contour.md
grass7__r.surf.fractal.md
grass7__r.topmodel.topidxstats.md
grass7__r.water.outlet.md
grass7__v.build.polylines.md
grass7__v.kernel.vector.md
grass7__v.lidar.correction.md
grass7__v.lidar.edgedetection.md
grass7__v.lidar.growing.md