[GRASS-SVN] r39468 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Oct 10 06:10:24 EDT 2009
Author: hamish
Date: 2009-10-10 06:10:24 -0400 (Sat, 10 Oct 2009)
New Revision: 39468
Modified:
grass/trunk/gui/wxpython/gui_modules/location_wizard.py
Log:
fix for UTM south (merge from devbr6)
Modified: grass/trunk/gui/wxpython/gui_modules/location_wizard.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/location_wizard.py 2009-10-10 10:09:06 UTC (rev 39467)
+++ grass/trunk/gui/wxpython/gui_modules/location_wizard.py 2009-10-10 10:10:24 UTC (rev 39468)
@@ -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