QGIS API Documentation 3.43.0-Master (e01d6d7c4c0)
qgsalgorithmalignrasters.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmalignrasters.cpp
3 ---------------------
4 begin : July 2023
5 copyright : (C) 2023 by Alexander Bruy
6 email : alexander dot bruy 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
20#include "qgsalignraster.h"
21#include "qgsalignrasterdata.h"
22
24
25Qgis::ProcessingAlgorithmFlags QgsAlignRastersAlgorithm::flags() const
26{
28}
29
30QString QgsAlignRastersAlgorithm::name() const
31{
32 return QStringLiteral( "alignrasters" );
33}
34
35QString QgsAlignRastersAlgorithm::displayName() const
36{
37 return QObject::tr( "Align rasters" );
38}
39
40QStringList QgsAlignRastersAlgorithm::tags() const
41{
42 return QObject::tr( "raster,align,resample,rescale" ).split( ',' );
43}
44
45QString QgsAlignRastersAlgorithm::group() const
46{
47 return QObject::tr( "Raster tools" );
48}
49
50QString QgsAlignRastersAlgorithm::groupId() const
51{
52 return QStringLiteral( "rastertools" );
53}
54
55QString QgsAlignRastersAlgorithm::shortHelpString() const
56{
57 return QObject::tr( "This algorithm aligns rasters by resampling them to the same cell size and reprojecting to the same CRS." );
58}
59
60QString QgsAlignRastersAlgorithm::shortDescription() const
61{
62 return QObject::tr( "Aligns rasters by resampling them to the same cell size and reprojecting to the same CRS." );
63}
64
65QgsAlignRastersAlgorithm *QgsAlignRastersAlgorithm::createInstance() const
66{
67 return new QgsAlignRastersAlgorithm();
68}
69
70bool QgsAlignRastersAlgorithm::checkParameterValues( const QVariantMap &parameters, QgsProcessingContext &context, QString *message ) const
71{
72 const QVariant layersVariant = parameters.value( parameterDefinition( QStringLiteral( "LAYERS" ) )->name() );
73 const QList<QgsAlignRasterData::RasterItem> items = QgsProcessingParameterAlignRasterLayers::parameterAsItems( layersVariant, context );
74 bool unconfiguredLayers = false;
75 for ( const QgsAlignRasterData::RasterItem &item : items )
76 {
77 if ( item.outputFilename.isEmpty() )
78 {
79 unconfiguredLayers = true;
80 break;
81 }
82 }
83 if ( unconfiguredLayers )
84 {
85 *message = QObject::tr( "An output file is not configured for one or more input layers. Configure output files via 'Configure Raster…' under Input layers parameter." );
86 return false;
87 }
88 return QgsProcessingAlgorithm::checkParameterValues( parameters, context );
89}
90
91void QgsAlignRastersAlgorithm::initAlgorithm( const QVariantMap & )
92{
93 addParameter( new QgsProcessingParameterAlignRasterLayers( QStringLiteral( "LAYERS" ), QObject::tr( "Input layers" ) ) );
94 addParameter( new QgsProcessingParameterRasterLayer( QStringLiteral( "REFERENCE_LAYER" ), QObject::tr( "Reference layer" ) ) );
95
96 addParameter( new QgsProcessingParameterCrs( QStringLiteral( "CRS" ), QObject::tr( "Override reference CRS" ), QVariant(), true ) );
97 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "CELL_SIZE_X" ), QObject::tr( "Override reference cell size X" ), Qgis::ProcessingNumberParameterType::Double, QVariant(), true, 1e-9 ) );
98 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "CELL_SIZE_Y" ), QObject::tr( "Override reference cell size Y" ), Qgis::ProcessingNumberParameterType::Double, QVariant(), true, 1e-9 ) );
99 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "GRID_OFFSET_X" ), QObject::tr( "Override reference grid offset X" ), Qgis::ProcessingNumberParameterType::Double, QVariant(), true, 1e-9 ) );
100 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "GRID_OFFSET_Y" ), QObject::tr( "Override reference grid offset Y" ), Qgis::ProcessingNumberParameterType::Double, QVariant(), true, 1e-9 ) );
101 addParameter( new QgsProcessingParameterExtent( QStringLiteral( "EXTENT" ), QObject::tr( "Clip to extent" ), QVariant(), true ) );
102
103 addOutput( new QgsProcessingOutputMultipleLayers( QStringLiteral( "OUTPUT_LAYERS" ), QObject::tr( "Aligned rasters" ) ) );
104}
105
106QVariantMap QgsAlignRastersAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
107{
108 QgsRasterLayer *referenceLayer = parameterAsRasterLayer( parameters, QStringLiteral( "REFERENCE_LAYER" ), context );
109 if ( !referenceLayer )
110 throw QgsProcessingException( invalidRasterError( parameters, QStringLiteral( "REFERENCE_LAYER" ) ) );
111
112 const QVariant layersVariant = parameters.value( parameterDefinition( QStringLiteral( "LAYERS" ) )->name() );
113 const QList<QgsAlignRasterData::RasterItem> items = QgsProcessingParameterAlignRasterLayers::parameterAsItems( layersVariant, context );
114 QStringList outputLayers;
115 outputLayers.reserve( items.size() );
116 for ( const QgsAlignRasterData::RasterItem &item : items )
117 {
118 outputLayers << item.outputFilename;
119 }
120
121 QgsAlignRaster rasterAlign;
122 rasterAlign.setRasters( items );
123
124 QString customCRSWkt;
125 QSizeF customCellSize;
126 QPointF customGridOffset( -1, -1 );
127
128 if ( parameters.value( QStringLiteral( "CRS" ) ).isValid() )
129 {
130 QgsCoordinateReferenceSystem crs = parameterAsCrs( parameters, QStringLiteral( "CRS" ), context );
132 }
133
134 bool hasXValue = parameters.value( QStringLiteral( "CELL_SIZE_X" ) ).isValid();
135 bool hasYValue = parameters.value( QStringLiteral( "CELL_SIZE_Y" ) ).isValid();
136 if ( ( hasXValue && !hasYValue ) || ( !hasXValue && hasYValue ) )
137 {
138 throw QgsProcessingException( QObject::tr( "Either set both X and Y cell size values or keep both as 'Not set'." ) );
139 }
140 else if ( hasXValue && hasYValue )
141 {
142 double xSize = parameterAsDouble( parameters, QStringLiteral( "CELL_SIZE_X" ), context );
143 double ySize = parameterAsDouble( parameters, QStringLiteral( "CELL_SIZE_Y" ), context );
144 customCellSize = QSizeF( xSize, ySize );
145 }
146
147 hasXValue = parameters.value( QStringLiteral( "GRID_OFFSET_X" ) ).isValid();
148 hasYValue = parameters.value( QStringLiteral( "GRID_OFFSET_Y" ) ).isValid();
149 if ( ( hasXValue && !hasYValue ) || ( !hasXValue && hasYValue ) )
150 {
151 throw QgsProcessingException( QObject::tr( "Either set both X and Y grid offset values or keep both as 'Not set'." ) );
152 }
153 else if ( hasXValue && hasYValue )
154 {
155 double xSize = parameterAsDouble( parameters, QStringLiteral( "GRID_OFFSET_X" ), context );
156 double ySize = parameterAsDouble( parameters, QStringLiteral( "GRID_OFFSET_Y" ), context );
157 customGridOffset = QPointF( xSize, ySize );
158 }
159
160 if ( parameters.value( QStringLiteral( "EXTENT" ) ).isValid() )
161 {
162 QgsRectangle extent = parameterAsExtent( parameters, QStringLiteral( "EXTENT" ), context );
163 rasterAlign.setClipExtent( extent );
164 }
165
166 struct QgsAlignRasterProgress : public QgsAlignRaster::ProgressHandler
167 {
168 explicit QgsAlignRasterProgress( QgsFeedback *feedback )
169 : mFeedback( feedback ) {}
170 bool progress( double complete ) override
171 {
172 mFeedback->setProgress( complete * 100 );
173 return true;
174 }
175
176 protected:
177 QgsFeedback *mFeedback = nullptr;
178 };
179
180 rasterAlign.setProgressHandler( new QgsAlignRasterProgress( feedback ) );
181
182 bool result = rasterAlign.setParametersFromRaster( referenceLayer->source(), customCRSWkt, customCellSize, customGridOffset );
183 if ( !result )
184 {
185 throw QgsProcessingException( QObject::tr( "It is not possible to reproject reference raster to target CRS." ) );
186 }
187
188 result = rasterAlign.run();
189 if ( !result )
190 {
191 throw QgsProcessingException( QObject::tr( "Failed to align rasters: %1" ).arg( rasterAlign.errorMessage() ) );
192 }
193
194 QVariantMap outputs;
195 outputs.insert( QStringLiteral( "OUTPUT_LAYERS" ), outputLayers );
196 return outputs;
197}
198
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
Definition qgis.h:3476
@ PreferredGdal
Preferred format for conversion of CRS to WKT for use with the GDAL library.
@ HideFromModeler
Algorithm should be hidden from the modeler.
Takes one or more raster layers and warps (resamples) them to a common grid.
bool setParametersFromRaster(const RasterInfo &rasterInfo, const QString &customCRSWkt=QString(), QSizeF customCellSize=QSizeF(), QPointF customGridOffset=QPointF(-1, -1))
Set destination CRS, cell size and grid offset from a raster file.
bool run()
Run the alignment process.
void setClipExtent(double xmin, double ymin, double xmax, double ymax)
Configure clipping extent (region of interest).
void setProgressHandler(ProgressHandler *progressHandler)
Assign a progress handler instance. Does not take ownership. nullptr can be passed.
QString errorMessage() const
Returns the error from a previous run() call.
void setRasters(const List &list)
Sets list of rasters that will be aligned.
Represents a coordinate reference system (CRS).
QString toWkt(Qgis::CrsWktVariant variant=Qgis::CrsWktVariant::Wkt1Gdal, bool multiline=false, int indentationWidth=4) const
Returns a WKT representation of this CRS.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
QString source() const
Returns the source for the layer.
virtual Qgis::ProcessingAlgorithmFlags flags() const
Returns the flags indicating how and when the algorithm operates and should be exposed to users.
virtual bool checkParameterValues(const QVariantMap &parameters, QgsProcessingContext &context, QString *message=nullptr) const
Checks the supplied parameter values to verify that they satisfy the requirements of this algorithm i...
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 multi-layer output for processing algorithms which create map layers, when the number and nature of...
A parameter for Processing algorithms specifying how rasters should be aligned.
static QList< QgsAlignRasterData::RasterItem > parameterAsItems(const QVariant &layersVariant, QgsProcessingContext &context)
Converts a QVariant value (a QVariantList) to a list of input layers.
A coordinate reference system parameter for processing algorithms.
A rectangular map extent parameter for processing algorithms.
A numeric parameter for processing algorithms.
A raster layer parameter for processing algorithms.
Represents a raster layer.
A rectangle specified with double values.
const QgsCoordinateReferenceSystem & crs
Definition of one raster layer for alignment.
Helper struct to be sub-classed for progress reporting.
virtual bool progress(double complete)=0
Method to be overridden for progress reporting.