Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[processing] change 0 to Not set Null values in Gdal Clip
- Loading branch information
|
@@ -67,7 +67,7 @@ def initAlgorithm(self, config=None): |
|
|
self.addParameter(QgsProcessingParameterNumber(self.NODATA, |
|
|
self.tr('Assign a specified nodata value to output bands'), |
|
|
type=QgsProcessingParameterNumber.Double, |
|
|
defaultValue=0.0, |
|
|
defaultValue='', |
|
|
optional=True)) |
|
|
|
|
|
options_param = QgsProcessingParameterString(self.OPTIONS, |
|
|
|
@@ -72,7 +72,7 @@ def initAlgorithm(self, config=None): |
|
|
self.addParameter(QgsProcessingParameterNumber(self.NODATA, |
|
|
self.tr('Assign a specified nodata value to output bands'), |
|
|
type=QgsProcessingParameterNumber.Double, |
|
|
defaultValue=0.0, |
|
|
defaultValue='', |
|
|
optional=True)) |
|
|
self.addParameter(QgsProcessingParameterBoolean(self.ALPHA_BAND, |
|
|
self.tr('Create an output alpha band'), |
|
|