Skip to content

Commit

Permalink
fix destination nodata value in gdal merge
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennesky committed Dec 6, 2013
1 parent ba76c99 commit 10f5f7c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/GdalTools/tools/doMerge.py
Expand Up @@ -147,6 +147,8 @@ def getArguments(self):
if self.noDataCheck.isChecked():
arguments.append("-n")
arguments.append(str(self.noDataSpin.value()))
arguments.append("-a_nodata")
arguments.append(str(self.noDataSpin.value()))
if self.separateCheck.isChecked():
arguments.append("-separate")
if self.pctCheck.isChecked():
Expand Down

0 comments on commit 10f5f7c

Please sign in to comment.