[GRASS-SVN] r39467 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Oct 10 06:09:07 EDT 2009


Author: hamish
Date: 2009-10-10 06:09:06 -0400 (Sat, 10 Oct 2009)
New Revision: 39467

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/location_wizard.py
Log:
fix for UTM south

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/location_wizard.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/location_wizard.py	2009-10-10 09:29:51 UTC (rev 39466)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/location_wizard.py	2009-10-10 10:09:06 UTC (rev 39467)
@@ -1980,7 +1980,7 @@
         elif proj == 'utm':
             proj4string = '+proj=%s +zone=%s' % (proj, utmzone)
             if utmhemisphere == 'south':
-                proj4string += '+south'
+                proj4string += ' +south'
         else:
             proj4string = '+proj=%s ' % (proj)
 



More information about the grass-commit mailing list