Skip to content

Commit cf0c3df

Browse files
committedJan 10, 2013
Merge pull request #383 from slarosa/sextante-issue
Fix for destination CRS in SEXTANTE GRASS algs:
2 parents 834107a + f2a0378 commit cf0c3df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/sextante/grass/GrassAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def setSessionProjectionFromProject(self, commands):
375375
if not GrassUtils.projectionSet:
376376
from sextante.core.Sextante import Sextante
377377
qgis = Sextante.getInterface()
378-
proj4 = qgis.mapCanvas().mapRenderer().getDestinationCrs().toProj4()
378+
proj4 = qgis.mapCanvas().mapRenderer().destinationCrs().toProj4()
379379
command = "g.proj"
380380
command +=" -c"
381381
command +=" proj4=\""+proj4+"\""

0 commit comments

Comments
 (0)
Please sign in to comment.