QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsalgorithmconstantraster.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmconstantraster.cpp
3 ---------------------
4 begin : November 2019
5 copyright : (C) 2019 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
18#include <limits>
19#include "math.h"
21#include "qgsrasterfilewriter.h"
22
24
25QString QgsConstantRasterAlgorithm::name() const
26{
27 return QStringLiteral( "createconstantrasterlayer" );
28}
29
30QString QgsConstantRasterAlgorithm::displayName() const
31{
32 return QObject::tr( "Create constant raster layer" );
33}
34
35QStringList QgsConstantRasterAlgorithm::tags() const
36{
37 return QObject::tr( "raster,create,constant" ).split( ',' );
38}
39
40QString QgsConstantRasterAlgorithm::group() const
41{
42 return QObject::tr( "Raster creation" );
43}
44
45QString QgsConstantRasterAlgorithm::groupId() const
46{
47 return QStringLiteral( "rastercreation" );
48}
49
50QString QgsConstantRasterAlgorithm::shortHelpString() const
51{
52 return QObject::tr( "Generates raster layer for given extent and cell "
53 "size filled with the specified value.\n"
54 "Additionally an output data type can be specified. "
55 "The algorithm will abort if a value has been entered that "
56 "cannot be represented by the selected output raster data type." );
57}
58
59QgsConstantRasterAlgorithm *QgsConstantRasterAlgorithm::createInstance() const
60{
61 return new QgsConstantRasterAlgorithm();
62}
63
64void QgsConstantRasterAlgorithm::initAlgorithm( const QVariantMap & )
65{
66 addParameter( new QgsProcessingParameterExtent( QStringLiteral( "EXTENT" ), QObject::tr( "Desired extent" ) ) );
67 addParameter( new QgsProcessingParameterCrs( QStringLiteral( "TARGET_CRS" ), QObject::tr( "Target CRS" ), QStringLiteral( "ProjectCrs" ) ) );
68 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "PIXEL_SIZE" ), QObject::tr( "Pixel size" ), Qgis::ProcessingNumberParameterType::Double, 1, false, 0 ) );
69 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "NUMBER" ), QObject::tr( "Constant value" ), Qgis::ProcessingNumberParameterType::Double, 1, false ) );
70
71 QStringList rasterDataTypes; //currently supported raster data types that can be handled QgsRasterBlock::writeValue()
72 rasterDataTypes << QStringLiteral( "Byte" )
73 << QStringLiteral( "Integer16" )
74 << QStringLiteral( "Unsigned Integer16" )
75 << QStringLiteral( "Integer32" )
76 << QStringLiteral( "Unsigned Integer32" )
77 << QStringLiteral( "Float32" )
78 << QStringLiteral( "Float64" );
79
80 //QGIS3: parameter set to Float32 by default so that existing models/scripts don't break
81 std::unique_ptr<QgsProcessingParameterDefinition> rasterTypeParameter = std::make_unique<QgsProcessingParameterEnum>( QStringLiteral( "OUTPUT_TYPE" ), QObject::tr( "Output raster data type" ), rasterDataTypes, false, 5, false );
82 rasterTypeParameter->setFlags( Qgis::ProcessingParameterFlag::Advanced );
83 addParameter( rasterTypeParameter.release() );
84
85 std::unique_ptr<QgsProcessingParameterString> createOptsParam = std::make_unique<QgsProcessingParameterString>( QStringLiteral( "CREATE_OPTIONS" ), QObject::tr( "Creation options" ), QVariant(), false, true );
86 createOptsParam->setMetadata( QVariantMap( { { QStringLiteral( "widget_wrapper" ), QVariantMap( { { QStringLiteral( "widget_type" ), QStringLiteral( "rasteroptions" ) } } ) } } ) );
87 createOptsParam->setFlags( createOptsParam->flags() | Qgis::ProcessingParameterFlag::Advanced );
88 addParameter( createOptsParam.release() );
89
90 addParameter( new QgsProcessingParameterRasterDestination( QStringLiteral( "OUTPUT" ), QObject::tr( "Constant" ) ) );
91}
92
93QVariantMap QgsConstantRasterAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
94{
95 const QgsCoordinateReferenceSystem crs = parameterAsCrs( parameters, QStringLiteral( "TARGET_CRS" ), context );
96 const QgsRectangle extent = parameterAsExtent( parameters, QStringLiteral( "EXTENT" ), context, crs );
97 const double pixelSize = parameterAsDouble( parameters, QStringLiteral( "PIXEL_SIZE" ), context );
98 const double value = parameterAsDouble( parameters, QStringLiteral( "NUMBER" ), context );
99 const int typeId = parameterAsInt( parameters, QStringLiteral( "OUTPUT_TYPE" ), context );
100
101 if ( pixelSize <= 0 )
102 {
103 throw QgsProcessingException( QObject::tr( "Pixel size must be greater than 0." ) );
104 }
105
106 //implement warning if input float has decimal places but is written to integer raster
107 double fractpart;
108 double intpart;
109 fractpart = abs( std::modf( value, &intpart ) ); //@abs: negative values may be entered
110
111 Qgis::DataType rasterDataType = Qgis::DataType::Float32; //standard output type
112 switch ( typeId )
113 {
114 case 0:
115 rasterDataType = Qgis::DataType::Byte;
116 if ( value < std::numeric_limits<quint8>::min() || value > std::numeric_limits<quint8>::max() )
117 throw QgsProcessingException( QObject::tr( "Raster datasets of type %3 only accept positive values between %1 and %2" ).arg( std::numeric_limits<quint8>::min() ).arg( std::numeric_limits<quint8>::max() ).arg( QLatin1String( "Byte" ) ) );
118 if ( fractpart > 0 )
119 feedback->reportError( QObject::tr( "The entered constant value has decimals but will be written to a raster dataset of type %1. The decimals of the constant value will be omitted." ).arg( QLatin1String( "Byte" ) ) );
120 break;
121 case 1:
122 rasterDataType = Qgis::DataType::Int16;
123 if ( value < std::numeric_limits<qint16>::min() || value > std::numeric_limits<qint16>::max() )
124 throw QgsProcessingException( QObject::tr( "Raster datasets of type %3 only accept values between %1 and %2" ).arg( std::numeric_limits<qint16>::min() ).arg( std::numeric_limits<qint16>::max() ).arg( QLatin1String( "Integer16" ) ) );
125 if ( fractpart > 0 )
126 feedback->reportError( QObject::tr( "The entered constant value has decimals but will be written to a raster dataset of type %1. The decimals of the constant value will be omitted." ).arg( QLatin1String( "Integer16" ) ) );
127 break;
128 case 2:
129 rasterDataType = Qgis::DataType::UInt16;
130 if ( value < std::numeric_limits<quint16>::min() || value > std::numeric_limits<quint16>::max() )
131 throw QgsProcessingException( QObject::tr( "Raster datasets of type %3 only accept positive values between %1 and %2" ).arg( std::numeric_limits<quint16>::min() ).arg( std::numeric_limits<quint16>::max() ).arg( "Unsigned Integer16" ) );
132 if ( fractpart > 0 )
133 feedback->reportError( QObject::tr( "The entered constant value has decimals but will be written to a raster dataset of type %1. The decimals of the constant value will be omitted." ).arg( QLatin1String( "Unsigned Integer16" ) ) );
134 break;
135 case 3:
136 rasterDataType = Qgis::DataType::Int32;
137 if ( value < std::numeric_limits<qint32>::min() || value > std::numeric_limits<qint32>::max() )
138 throw QgsProcessingException( QObject::tr( "Raster datasets of type %3 only accept values between %1 and %2" ).arg( std::numeric_limits<qint32>::min() ).arg( std::numeric_limits<qint32>::max() ).arg( QLatin1String( "Integer32" ) ) );
139 if ( fractpart > 0 )
140 feedback->reportError( QObject::tr( "The entered constant value has decimals but will be written to a raster dataset of type %1. The decimals of the constant value will be omitted." ).arg( QLatin1String( "Integer32" ) ) );
141 break;
142 case 4:
143 rasterDataType = Qgis::DataType::UInt32;
144 if ( value < std::numeric_limits<quint32>::min() || value > std::numeric_limits<quint32>::max() )
145 throw QgsProcessingException( QObject::tr( "Raster datasets of type %3 only accept positive values between %1 and %2" ).arg( std::numeric_limits<quint32>::min() ).arg( std::numeric_limits<quint32>::max() ).arg( QLatin1String( "Unsigned Integer32" ) ) );
146 if ( fractpart > 0 )
147 feedback->reportError( QObject::tr( "The entered constant value has decimals but will be written to a raster dataset of type %1. The decimals of the constant value will be omitted." ).arg( QLatin1String( "Unsigned Integer32" ) ) );
148 break;
149 case 5:
150 rasterDataType = Qgis::DataType::Float32;
151 break;
152 case 6:
153 rasterDataType = Qgis::DataType::Float64;
154 break;
155 default:
156 break;
157 }
158
159 const QString createOptions = parameterAsString( parameters, QStringLiteral( "CREATE_OPTIONS" ), context ).trimmed();
160 const QString outputFile = parameterAsOutputLayer( parameters, QStringLiteral( "OUTPUT" ), context );
161 const QFileInfo fi( outputFile );
162 const QString outputFormat = QgsRasterFileWriter::driverForExtension( fi.suffix() );
163
164 const int rows = std::max( std::ceil( extent.height() / pixelSize ), 1.0 );
165 const int cols = std::max( std::ceil( extent.width() / pixelSize ), 1.0 );
166
167 //build new raster extent based on number of columns and cellsize
168 //this prevents output cellsize being calculated too small
169 const QgsRectangle rasterExtent = QgsRectangle( extent.xMinimum(), extent.yMaximum() - ( rows * pixelSize ), extent.xMinimum() + ( cols * pixelSize ), extent.yMaximum() );
170
171 std::unique_ptr<QgsRasterFileWriter> writer = std::make_unique<QgsRasterFileWriter>( outputFile );
172 writer->setOutputProviderKey( QStringLiteral( "gdal" ) );
173 if ( !createOptions.isEmpty() )
174 {
175 writer->setCreateOptions( createOptions.split( '|' ) );
176 }
177 writer->setOutputFormat( outputFormat );
178 std::unique_ptr<QgsRasterDataProvider> provider( writer->createOneBandRaster( rasterDataType, cols, rows, rasterExtent, crs ) );
179 if ( !provider )
180 throw QgsProcessingException( QObject::tr( "Could not create raster output: %1" ).arg( outputFile ) );
181 if ( !provider->isValid() )
182 throw QgsProcessingException( QObject::tr( "Could not create raster output %1: %2" ).arg( outputFile, provider->error().message( QgsErrorMessage::Text ) ) );
183
184 //Thoughts on noData:
185 //Setting a noData value is disabled so that the user is protected from accidentally creating an empty raster (eg. when value is set to -9999)
186 //We could also allow creating empty rasters by exposing a noData value parameter (usecases?).
187
188 //prepare raw data depending on raster data type
189 QgsRasterBlock block( rasterDataType, cols, 1 );
190 switch ( typeId )
191 {
192 case 0:
193 {
194 std::vector<quint8> byteRow( cols );
195 std::fill( byteRow.begin(), byteRow.end(), value );
196 block.setData( QByteArray::fromRawData( ( char * ) &byteRow[0], QgsRasterBlock::typeSize( Qgis::DataType::Byte ) * cols ) );
197 break;
198 }
199 case 1:
200 {
201 std::vector<qint16> int16Row( cols );
202 std::fill( int16Row.begin(), int16Row.end(), value );
203 block.setData( QByteArray::fromRawData( ( char * ) &int16Row[0], QgsRasterBlock::typeSize( Qgis::DataType::Int16 ) * cols ) );
204 break;
205 }
206 case 2:
207 {
208 std::vector<quint16> uInt16Row( cols );
209 std::fill( uInt16Row.begin(), uInt16Row.end(), value );
210 block.setData( QByteArray::fromRawData( ( char * ) &uInt16Row[0], QgsRasterBlock::typeSize( Qgis::DataType::UInt16 ) * cols ) );
211 break;
212 }
213 case 3:
214 {
215 std::vector<qint32> int32Row( cols );
216 std::fill( int32Row.begin(), int32Row.end(), value );
217 block.setData( QByteArray::fromRawData( ( char * ) &int32Row[0], QgsRasterBlock::typeSize( Qgis::DataType::Int32 ) * cols ) );
218 break;
219 }
220 case 4:
221 {
222 std::vector<quint32> uInt32Row( cols );
223 std::fill( uInt32Row.begin(), uInt32Row.end(), value );
224 block.setData( QByteArray::fromRawData( ( char * ) &uInt32Row[0], QgsRasterBlock::typeSize( Qgis::DataType::UInt32 ) * cols ) );
225 break;
226 }
227 case 5:
228 {
229 std::vector<float> float32Row( cols );
230 std::fill( float32Row.begin(), float32Row.end(), value );
231 block.setData( QByteArray::fromRawData( ( char * ) &float32Row[0], QgsRasterBlock::typeSize( Qgis::DataType::Float32 ) * cols ) );
232 break;
233 }
234 case 6:
235 {
236 std::vector<double> float64Row( cols );
237 std::fill( float64Row.begin(), float64Row.end(), value );
238 block.setData( QByteArray::fromRawData( ( char * ) &float64Row[0], QgsRasterBlock::typeSize( Qgis::DataType::Float64 ) * cols ) );
239 break;
240 }
241 default:
242 {
243 std::vector<float> float32Row( cols );
244 std::fill( float32Row.begin(), float32Row.end(), value );
245 block.setData( QByteArray::fromRawData( ( char * ) &float32Row[0], QgsRasterBlock::typeSize( Qgis::DataType::Float32 ) * cols ) );
246 break;
247 }
248 }
249
250 const double step = rows > 0 ? 100.0 / rows : 1;
251
252 for ( int i = 0; i < rows; i++ )
253 {
254 if ( feedback->isCanceled() )
255 {
256 break;
257 }
258
259 provider->writeBlock( &block, 1, 0, i );
260 feedback->setProgress( i * step );
261 }
262
263 QVariantMap outputs;
264 outputs.insert( QStringLiteral( "OUTPUT" ), outputFile );
265 return outputs;
266}
267
DataType
Raster data types.
Definition qgis.h:351
@ Float32
Thirty two bit floating point (float)
@ Int16
Sixteen bit signed integer (qint16)
@ UInt16
Sixteen bit unsigned integer (quint16)
@ Byte
Eight bit unsigned integer (quint8)
@ Int32
Thirty two bit signed integer (qint32)
@ Float64
Sixty four bit floating point (double)
@ UInt32
Thirty two bit unsigned integer (quint32)
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
This class represents a coordinate reference system (CRS).
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
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 reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
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 destination parameter, for specifying the destination path for a raster layer created ...
Raster data container.
static int typeSize(Qgis::DataType dataType)
Returns the size in bytes for the specified dataType.
static QString driverForExtension(const QString &extension)
Returns the GDAL driver name for a specified file extension.
A rectangle specified with double values.
double xMinimum
double yMaximum
const QgsCoordinateReferenceSystem & crs