Skip to content

Commit

Permalink
Merge pull request #3234 from aharfoot/GDALTools_bugfix
Browse files Browse the repository at this point in the history
fix bug in GDALTools Assign Projection
  • Loading branch information
alexbruy committed Jun 29, 2016
2 parents 0083291 + bb81568 commit 0f6e8da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/GdalTools/tools/doProjection.py
Expand Up @@ -42,7 +42,7 @@ def __init__(self, iface):
self.iface = iface

self.setupUi(self)
BaseBatchWidget.__init__(self, self.iface, "gdalwarp")
BaseBatchWidget.__init__(self, self.iface, "gdal_translate")

self.inSelector.setType(self.inSelector.FILE)

Expand Down Expand Up @@ -112,7 +112,7 @@ def fillDesiredSRSEdit(self):
def getArguments(self):
arguments = []
if self.desiredSRSEdit.text():
arguments.append("-t_srs")
arguments.append("-a_srs")
arguments.append(self.desiredSRSEdit.text())
if self.batchCheck.isChecked():
return arguments
Expand Down

0 comments on commit 0f6e8da

Please sign in to comment.