Skip to content

Commit

Permalink
[processing] made -te parameter optional in gdal warp
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 10, 2016
1 parent b51e3c7 commit 3b1dfa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/warp.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def defineCharacteristics(self):
0.0, None, 0.0))
self.addParameter(ParameterSelection(self.METHOD,
self.tr('Resampling method'), self.METHOD_OPTIONS))
self.addParameter(ParameterExtent(self.RAST_EXT, self.tr('Raster extent')))
self.addParameter(ParameterExtent(self.RAST_EXT, self.tr('Raster extent'), optional=True))

if GdalUtils.version() >= 2000000:
self.addParameter(ParameterCrs(self.EXT_CRS,
Expand Down

0 comments on commit 3b1dfa7

Please sign in to comment.