QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsalgorithmrescaleraster.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmrescaleraster.cpp
3 ---------------------
4 begin : July 2020
5 copyright : (C) 2020 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
19
20#include <limits>
21#include <math.h>
22
23#include "qgsrasterfilewriter.h"
24
26
27QString QgsRescaleRasterAlgorithm::name() const
28{
29 return QStringLiteral( "rescaleraster" );
30}
31
32QString QgsRescaleRasterAlgorithm::displayName() const
33{
34 return QObject::tr( "Rescale raster" );
35}
36
37QStringList QgsRescaleRasterAlgorithm::tags() const
38{
39 return QObject::tr( "raster,rescale,minimum,maximum,range" ).split( ',' );
40}
41
42QString QgsRescaleRasterAlgorithm::group() const
43{
44 return QObject::tr( "Raster analysis" );
45}
46
47QString QgsRescaleRasterAlgorithm::groupId() const
48{
49 return QStringLiteral( "rasteranalysis" );
50}
51
52QString QgsRescaleRasterAlgorithm::shortHelpString() const
53{
54 return QObject::tr( "This algorithm rescales a raster layer to a new value range, while preserving the shape "
55 "(distribution) of the raster's histogram (pixel values). Input values "
56 "are mapped using a linear interpolation from the source raster's minimum "
57 "and maximum pixel values to the destination minimum and maximum pixel range.\n\n"
58 "By default the algorithm preserves the original NoData value, but there is "
59 "an option to override it." );
60}
61
62QString QgsRescaleRasterAlgorithm::shortDescription() const
63{
64 return QObject::tr( "Rescales a raster layer to a new value range, while preserving the shape "
65 "(distribution) of the raster's histogram (pixel values)." );
66}
67
68QgsRescaleRasterAlgorithm *QgsRescaleRasterAlgorithm::createInstance() const
69{
70 return new QgsRescaleRasterAlgorithm();
71}
72
73void QgsRescaleRasterAlgorithm::initAlgorithm( const QVariantMap & )
74{
75 addParameter( new QgsProcessingParameterRasterLayer( QStringLiteral( "INPUT" ), QStringLiteral( "Input raster" ) ) );
76 addParameter( new QgsProcessingParameterBand( QStringLiteral( "BAND" ), QObject::tr( "Band number" ), 1, QStringLiteral( "INPUT" ) ) );
77 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "MINIMUM" ), QObject::tr( "New minimum value" ), Qgis::ProcessingNumberParameterType::Double, 0 ) );
78 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "MAXIMUM" ), QObject::tr( "New maximum value" ), Qgis::ProcessingNumberParameterType::Double, 255 ) );
79 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "NODATA" ), QObject::tr( "New NoData value" ), Qgis::ProcessingNumberParameterType::Double, QVariant(), true ) );
80
81 // backwards compatibility parameter
82 // TODO QGIS 4: remove parameter and related logic
83 auto createOptsParam = std::make_unique<QgsProcessingParameterString>( QStringLiteral( "CREATE_OPTIONS" ), QObject::tr( "Creation options" ), QVariant(), false, true );
84 createOptsParam->setMetadata( QVariantMap( { { QStringLiteral( "widget_wrapper" ), QVariantMap( { { QStringLiteral( "widget_type" ), QStringLiteral( "rasteroptions" ) } } ) } } ) );
85 createOptsParam->setFlags( createOptsParam->flags() | Qgis::ProcessingParameterFlag::Hidden );
86 addParameter( createOptsParam.release() );
87
88 auto creationOptsParam = std::make_unique<QgsProcessingParameterString>( QStringLiteral( "CREATION_OPTIONS" ), QObject::tr( "Creation options" ), QVariant(), false, true );
89 creationOptsParam->setMetadata( QVariantMap( { { QStringLiteral( "widget_wrapper" ), QVariantMap( { { QStringLiteral( "widget_type" ), QStringLiteral( "rasteroptions" ) } } ) } } ) );
90 creationOptsParam->setFlags( creationOptsParam->flags() | Qgis::ProcessingParameterFlag::Advanced );
91 addParameter( creationOptsParam.release() );
92
93 addParameter( new QgsProcessingParameterRasterDestination( QStringLiteral( "OUTPUT" ), QObject::tr( "Rescaled" ) ) );
94}
95
96bool QgsRescaleRasterAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
97{
98 Q_UNUSED( feedback );
99
100 QgsRasterLayer *layer = parameterAsRasterLayer( parameters, QStringLiteral( "INPUT" ), context );
101 if ( !layer )
102 throw QgsProcessingException( invalidRasterError( parameters, QStringLiteral( "INPUT" ) ) );
103
104 mBand = parameterAsInt( parameters, QStringLiteral( "BAND" ), context );
105 if ( mBand < 1 || mBand > layer->bandCount() )
106 throw QgsProcessingException( QObject::tr( "Invalid band number for BAND (%1): Valid values for input raster are 1 to %2" )
107 .arg( mBand )
108 .arg( layer->bandCount() ) );
109
110 mMinimum = parameterAsDouble( parameters, QStringLiteral( "MINIMUM" ), context );
111 mMaximum = parameterAsDouble( parameters, QStringLiteral( "MAXIMUM" ), context );
112
113 mInterface.reset( layer->dataProvider()->clone() );
114
115 mCrs = layer->crs();
116 mLayerWidth = layer->width();
117 mLayerHeight = layer->height();
118 mExtent = layer->extent();
119 if ( parameters.value( QStringLiteral( "NODATA" ) ).isValid() )
120 {
121 mNoData = parameterAsDouble( parameters, QStringLiteral( "NODATA" ), context );
122 }
123 else
124 {
125 mNoData = layer->dataProvider()->sourceNoDataValue( mBand );
126 }
127
128 if ( std::isfinite( mNoData ) )
129 {
130 // Clamp nodata to float32 range, since that's the type of the raster
131 if ( mNoData < std::numeric_limits<float>::lowest() )
132 mNoData = std::numeric_limits<float>::lowest();
133 else if ( mNoData > std::numeric_limits<float>::max() )
134 mNoData = std::numeric_limits<float>::max();
135 }
136
137 mXSize = mInterface->xSize();
138 mYSize = mInterface->ySize();
139
140 return true;
141}
142
143QVariantMap QgsRescaleRasterAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
144{
145 feedback->pushInfo( QObject::tr( "Calculating raster minimum and maximum values…" ) );
146 const QgsRasterBandStats stats = mInterface->bandStatistics( mBand, Qgis::RasterBandStatistic::Min | Qgis::RasterBandStatistic::Max, QgsRectangle(), 0 );
147
148 feedback->pushInfo( QObject::tr( "Rescaling values…" ) );
149
150 QString creationOptions = parameterAsString( parameters, QStringLiteral( "CREATION_OPTIONS" ), context ).trimmed();
151 // handle backwards compatibility parameter CREATE_OPTIONS
152 const QString optionsString = parameterAsString( parameters, QStringLiteral( "CREATE_OPTIONS" ), context );
153 if ( !optionsString.isEmpty() )
154 creationOptions = optionsString;
155
156 const QString outputFile = parameterAsOutputLayer( parameters, QStringLiteral( "OUTPUT" ), context );
157 const QFileInfo fi( outputFile );
158 const QString outputFormat = QgsRasterFileWriter::driverForExtension( fi.suffix() );
159 auto writer = std::make_unique<QgsRasterFileWriter>( outputFile );
160 writer->setOutputProviderKey( QStringLiteral( "gdal" ) );
161 if ( !creationOptions.isEmpty() )
162 {
163 writer->setCreationOptions( creationOptions.split( '|' ) );
164 }
165
166 writer->setOutputFormat( outputFormat );
167 std::unique_ptr<QgsRasterDataProvider> provider( writer->createOneBandRaster( Qgis::DataType::Float32, mXSize, mYSize, mExtent, mCrs ) );
168 if ( !provider )
169 throw QgsProcessingException( QObject::tr( "Could not create raster output: %1" ).arg( outputFile ) );
170 if ( !provider->isValid() )
171 throw QgsProcessingException( QObject::tr( "Could not create raster output %1: %2" ).arg( outputFile, provider->error().message( QgsErrorMessage::Text ) ) );
172
173 QgsRasterDataProvider *destProvider = provider.get();
174 destProvider->setEditable( true );
175 destProvider->setNoDataValue( 1, mNoData );
176
179 const int numBlocksX = static_cast<int>( std::ceil( 1.0 * mLayerWidth / blockWidth ) );
180 const int numBlocksY = static_cast<int>( std::ceil( 1.0 * mLayerHeight / blockHeight ) );
181 const int numBlocks = numBlocksX * numBlocksY;
182
183 QgsRasterIterator iter( mInterface.get() );
184 iter.startRasterRead( mBand, mLayerWidth, mLayerHeight, mExtent );
185 int iterLeft = 0;
186 int iterTop = 0;
187 int iterCols = 0;
188 int iterRows = 0;
189 std::unique_ptr<QgsRasterBlock> inputBlock;
190 while ( iter.readNextRasterPart( mBand, iterCols, iterRows, inputBlock, iterLeft, iterTop ) )
191 {
192 auto outputBlock = std::make_unique<QgsRasterBlock>( destProvider->dataType( 1 ), iterCols, iterRows );
193 feedback->setProgress( 100 * ( ( iterTop / blockHeight * numBlocksX ) + iterLeft / blockWidth ) / numBlocks );
194
195 for ( int row = 0; row < iterRows; row++ )
196 {
197 if ( feedback->isCanceled() )
198 break;
199
200 for ( int col = 0; col < iterCols; col++ )
201 {
202 bool isNoData = false;
203 const double val = inputBlock->valueAndNoData( row, col, isNoData );
204 if ( isNoData )
205 {
206 outputBlock->setValue( row, col, mNoData );
207 }
208 else
209 {
210 const double newValue = ( ( val - stats.minimumValue ) * ( mMaximum - mMinimum ) / ( stats.maximumValue - stats.minimumValue ) ) + mMinimum;
211 outputBlock->setValue( row, col, newValue );
212 }
213 }
214 }
215 if ( !destProvider->writeBlock( outputBlock.get(), mBand, iterLeft, iterTop ) )
216 {
217 throw QgsProcessingException( QObject::tr( "Could not write raster block: %1" ).arg( destProvider->error().summary() ) );
218 }
219 }
220 destProvider->setEditable( false );
221
222 QVariantMap outputs;
223 outputs.insert( QStringLiteral( "OUTPUT" ), outputFile );
224 return outputs;
225}
226
@ Float32
Thirty two bit floating point (float).
Definition qgis.h:380
@ Hidden
Parameter is hidden and should not be shown to users.
Definition qgis.h:3764
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
Definition qgis.h:3763
@ Double
Double/float values.
Definition qgis.h:3804
virtual QgsError error() const
Gets current status error.
QString summary() const
Short error description, usually the first error in chain, the real error.
Definition qgserror.cpp:130
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
void setProgress(double progress)
Sets the current progress for the feedback object.
Definition qgsfeedback.h:61
virtual QgsRectangle extent() const
Returns the extent of the layer.
QgsCoordinateReferenceSystem crs
Definition qgsmaplayer.h:87
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 pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
A raster band parameter for Processing algorithms.
A numeric parameter for processing algorithms.
A raster layer destination parameter, for specifying the destination path for a raster layer created ...
A raster layer parameter for processing algorithms.
The RasterBandStats struct is a container for statistics about a single raster band.
double minimumValue
The minimum cell value in the raster band.
double maximumValue
The maximum cell value in the raster band.
Base class for raster data providers.
QgsRasterDataProvider * clone() const override=0
Clone itself, create deep copy.
virtual bool setNoDataValue(int bandNo, double noDataValue)
Set no data value on created dataset.
virtual double sourceNoDataValue(int bandNo) const
Value representing no data value.
bool writeBlock(QgsRasterBlock *block, int band, int xOffset=0, int yOffset=0)
Writes pixel data from a raster block into the provider data source.
Qgis::DataType dataType(int bandNo) const override=0
Returns data type for the band specified by number.
virtual bool setEditable(bool enabled)
Turns on/off editing mode of the provider.
static QString driverForExtension(const QString &extension)
Returns the GDAL driver name for a specified file extension.
Iterator for sequentially processing raster cells.
static const int DEFAULT_MAXIMUM_TILE_WIDTH
Default maximum tile width.
static const int DEFAULT_MAXIMUM_TILE_HEIGHT
Default maximum tile height.
Represents a raster layer.
int height() const
Returns the height of the (unclipped) raster.
int bandCount() const
Returns the number of bands in this layer.
QgsRasterDataProvider * dataProvider() override
Returns the source data provider.
int width() const
Returns the width of the (unclipped) raster.
A rectangle specified with double values.