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 cd3adc0 commit 20b93df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/warp.py
Expand Up @@ -87,7 +87,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 20b93df

Please sign in to comment.