Skip to content

Commit

Permalink
Merge pull request #1641 from gioman/gdal_rasterize
Browse files Browse the repository at this point in the history
better gdal rasterize defaults
  • Loading branch information
volaya committed Oct 19, 2014
2 parents a548d1f + e1dedee commit c81a27e
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 c81a27e

Please sign in to comment.