Skip to content

Commit e1dedee

Browse files
author
Giovanni Manghi
committedOct 19, 2014
better gdal rasterize defaults
1 parent a548d1f commit e1dedee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ def defineCharacteristics(self):
5555
self.INPUT))
5656
self.addParameter(ParameterSelection(self.DIMENSIONS,
5757
'Set output raster size', ['Output size in pixels',
58-
'Output resolution in map units per pixel'], 0))
58+
'Output resolution in map units per pixel'], 1))
5959
self.addParameter(ParameterNumber(self.WIDTH, 'Horizontal', 0.0,
60-
99999999.999999, 3000.0))
60+
99999999.999999, 100.0))
6161
self.addParameter(ParameterNumber(self.HEIGHT, 'Vertical', 0.0,
62-
99999999.999999, 3000.0))
62+
99999999.999999, 100.0))
6363

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

0 commit comments

Comments
 (0)
Please sign in to comment.