Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for destination CRS in GRASS algs:
  • Loading branch information
slarosa committed Jan 10, 2013
1 parent 4ddcb3e commit f2a0378
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 f2a0378

Please sign in to comment.