Skip to content

Commit

Permalink
Fix default setting for gauss parameter
Browse files Browse the repository at this point in the history
Fix default setting for gauss parameter which must be "none" rather than 0 (which leads to empty maps as gauss=0 is unhelpful)
  • Loading branch information
anikaweinmann authored and nyalldawson committed Mar 1, 2019
1 parent 4a9b9e3 commit b10a5ec
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -5,7 +5,7 @@ QgsProcessingParameterRasterLayer|input|Input raster layer|None|False
QgsProcessingParameterRasterLayer|selection|Raster layer to select the cells which should be processed|None|True
QgsProcessingParameterEnum|method|Neighborhood operation|average;median;mode;minimum;maximum;stddev;sum;variance;diversity;interspersion|False|0|True
QgsProcessingParameterNumber|size|Neighborhood size|QgsProcessingParameterNumber.Integer|3|True|1|None
QgsProcessingParameterNumber|gauss|Sigma (in cells) for Gaussian filter|QgsProcessingParameterNumber.Integer|0|True|0|None
QgsProcessingParameterNumber|gauss|Sigma (in cells) for Gaussian filter|QgsProcessingParameterNumber.Integer|None|True|0|None
QgsProcessingParameterString|quantile|Quantile to calculate for method=quantile|None|False|True
QgsProcessingParameterBoolean|-c|Use circular neighborhood|False
*QgsProcessingParameterBoolean|-a|Do not align output with the input|False
Expand Down

0 comments on commit b10a5ec

Please sign in to comment.