[GRASS-SVN] r39483 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Oct 11 04:49:19 EDT 2009
Author: hamish
Date: 2009-10-11 04:49:18 -0400 (Sun, 11 Oct 2009)
New Revision: 39483
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/location_wizard.py
Log:
repair utm
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-11 07:23:13 UTC (rev 39482)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/location_wizard.py 2009-10-11 08:49:18 UTC (rev 39483)
@@ -1980,9 +1980,9 @@
if proj == 'll':
proj4string = '+proj=longlat'
elif proj == 'utm':
- proj4string = '+proj=%s +zone=%s' % (utm, utmzone)
+ 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