We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 138d836 commit 8afbe83Copy full SHA for 8afbe83
python/plugins/processing/algs/gdal/rasterize.py
@@ -86,6 +86,8 @@ def processAlgorithm(self, progress):
86
if dimType == 0:
87
# size in pixels
88
arguments.append('-ts')
89
+ arguments.append(str(self.getParameterValue(self.WIDTH)))
90
+ arguments.append(str(self.getParameterValue(self.HEIGHT)))
91
else:
92
# resolution in map units per pixel
93
arguments.append('-tr')
0 commit comments