Skip to content

Commit 20b93df

Browse files
committedOct 10, 2016
[processing] made -te parameter optional in gdal warp
1 parent cd3adc0 commit 20b93df

File tree

1 file changed

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

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def defineCharacteristics(self):
8787
0.0, None, 0.0))
8888
self.addParameter(ParameterSelection(self.METHOD,
8989
self.tr('Resampling method'), self.METHOD_OPTIONS))
90-
self.addParameter(ParameterExtent(self.RAST_EXT, self.tr('Raster extent')))
90+
self.addParameter(ParameterExtent(self.RAST_EXT, self.tr('Raster extent'), optional=True))
9191

9292
if GdalUtils.version() >= 2000000:
9393
self.addParameter(ParameterCrs(self.EXT_CRS,

0 commit comments

Comments
 (0)
Please sign in to comment.