|
53 | 53 | QgsProcessingParameterMultipleLayers,
|
54 | 54 | QgsProcessingParameterPoint,
|
55 | 55 | QgsProcessingParameterRange,
|
| 56 | + QgsProcessingParameterRasterLayer, |
56 | 57 | QgsProcessingParameterVectorLayer,
|
57 | 58 | QgsProcessingParameterMeshLayer,
|
58 | 59 | QgsProcessingOutputString,
|
@@ -425,6 +426,7 @@ def input(self, type, *args, **kwargs):
|
425 | 426 | alg.SOURCE: QgsProcessingParameterFeatureSource
|
426 | 427 | alg.FILE_DEST: QgsProcessingParameterFileDestination
|
427 | 428 | alg.FOLDER_DEST: QgsProcessingParameterFolderDestination
|
| 429 | + alg.RASTER_LAYER: QgsProcessingParameterRasterLayer |
428 | 430 | alg.RASTER_LAYER_DEST: QgsProcessingParameterRasterDestination
|
429 | 431 | alg.VECTOR_LAYER_DEST: QgsProcessingParameterVectorDestination
|
430 | 432 | alg.BAND: QgsProcessingParameterBand
|
@@ -472,6 +474,7 @@ def dec(f):
|
472 | 474 | ProcessingAlgFactory.SOURCE: QgsProcessingParameterFeatureSource,
|
473 | 475 | ProcessingAlgFactory.FILE_DEST: QgsProcessingParameterFileDestination,
|
474 | 476 | ProcessingAlgFactory.FOLDER_DEST: QgsProcessingParameterFolderDestination,
|
| 477 | + ProcessingAlgFactory.RASTER_LAYER: QgsProcessingParameterRasterLayer, |
475 | 478 | ProcessingAlgFactory.RASTER_LAYER_DEST: QgsProcessingParameterRasterDestination,
|
476 | 479 | ProcessingAlgFactory.VECTOR_LAYER_DEST: QgsProcessingParameterVectorDestination,
|
477 | 480 | ProcessingAlgFactory.BAND: QgsProcessingParameterBand,
|
|
0 commit comments