Skip to content

Commit 68ce8fc

Browse files
nirvnnyalldawson
authored andcommittedJul 16, 2018
[processing] make target res. parameter optional in gdal's warp algorithm
1 parent dc2a1c5 commit 68ce8fc

File tree

1 file changed

+2
-1
lines changed
  • python/plugins/processing/algs/gdal

1 file changed

+2
-1
lines changed
 

‎python/plugins/processing/algs/gdal/warp.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ def initAlgorithm(self, config=None):
9696
self.tr('Output file resolution in target georeferenced units'),
9797
type=QgsProcessingParameterNumber.Double,
9898
minValue=0.0,
99-
defaultValue=None))
99+
defaultValue=None,
100+
optional=True))
100101

101102
options_param = QgsProcessingParameterString(self.OPTIONS,
102103
self.tr('Additional creation parameters'),

0 commit comments

Comments
 (0)
Please sign in to comment.