Skip to content

Commit

Permalink
Harmonize default pixel size for raster creation algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
kannes authored and nyalldawson committed Apr 23, 2023
1 parent e68df56 commit ae10741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmconstantraster.cpp
Expand Up @@ -66,7 +66,7 @@ void QgsConstantRasterAlgorithm::initAlgorithm( const QVariantMap & )
addParameter( new QgsProcessingParameterExtent( QStringLiteral( "EXTENT" ), QObject::tr( "Desired extent" ) ) );
addParameter( new QgsProcessingParameterCrs( QStringLiteral( "TARGET_CRS" ), QObject::tr( "Target CRS" ), QStringLiteral( "ProjectCrs" ) ) );
addParameter( new QgsProcessingParameterNumber( QStringLiteral( "PIXEL_SIZE" ), QObject::tr( "Pixel size" ),
QgsProcessingParameterNumber::Double, 0.00001, false, 0 ) );
QgsProcessingParameterNumber::Double, 1, false, 0 ) );
addParameter( new QgsProcessingParameterNumber( QStringLiteral( "NUMBER" ), QObject::tr( "Constant value" ),
QgsProcessingParameterNumber::Double, 1, false ) );

Expand Down

0 comments on commit ae10741

Please sign in to comment.