Skip to content

Commit

Permalink
better gdal rasterize defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovanni Manghi committed Oct 19, 2014
1 parent a548d1f commit e1dedee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/plugins/processing/algs/gdal/rasterize.py
Expand Up @@ -55,11 +55,11 @@ def defineCharacteristics(self):
self.INPUT))
self.addParameter(ParameterSelection(self.DIMENSIONS,
'Set output raster size', ['Output size in pixels',
'Output resolution in map units per pixel'], 0))
'Output resolution in map units per pixel'], 1))
self.addParameter(ParameterNumber(self.WIDTH, 'Horizontal', 0.0,
99999999.999999, 3000.0))
99999999.999999, 100.0))
self.addParameter(ParameterNumber(self.HEIGHT, 'Vertical', 0.0,
99999999.999999, 3000.0))
99999999.999999, 100.0))

self.addOutput(OutputRaster(self.OUTPUT, 'Output layer'))

Expand Down

0 comments on commit e1dedee

Please sign in to comment.