Skip to content

Commit

Permalink
Merge pull request #383 from slarosa/sextante-issue
Browse files Browse the repository at this point in the history
Fix for destination CRS in SEXTANTE GRASS algs:
  • Loading branch information
volaya committed Jan 10, 2013
2 parents 834107a + f2a0378 commit cf0c3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/sextante/grass/GrassAlgorithm.py
Expand Up @@ -375,7 +375,7 @@ def setSessionProjectionFromProject(self, commands):
if not GrassUtils.projectionSet:
from sextante.core.Sextante import Sextante
qgis = Sextante.getInterface()
proj4 = qgis.mapCanvas().mapRenderer().getDestinationCrs().toProj4()
proj4 = qgis.mapCanvas().mapRenderer().destinationCrs().toProj4()
command = "g.proj"
command +=" -c"
command +=" proj4=\""+proj4+"\""
Expand Down

0 comments on commit cf0c3df

Please sign in to comment.