We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent a548d1f commit e1dedeeCopy full SHA for e1dedee
python/plugins/processing/algs/gdal/rasterize.py
@@ -55,11 +55,11 @@ def defineCharacteristics(self):
55
self.INPUT))
56
self.addParameter(ParameterSelection(self.DIMENSIONS,
57
'Set output raster size', ['Output size in pixels',
58
- 'Output resolution in map units per pixel'], 0))
+ 'Output resolution in map units per pixel'], 1))
59
self.addParameter(ParameterNumber(self.WIDTH, 'Horizontal', 0.0,
60
- 99999999.999999, 3000.0))
+ 99999999.999999, 100.0))
61
self.addParameter(ParameterNumber(self.HEIGHT, 'Vertical', 0.0,
62
63
64
self.addOutput(OutputRaster(self.OUTPUT, 'Output layer'))
65
0 commit comments