Przeglądaj źródła

fix for UTM south (merge from devbr6)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@39468 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 15 lat temu
rodzic
commit
9062c67f2a
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gui/wxpython/gui_modules/location_wizard.py

+ 1 - 1
gui/wxpython/gui_modules/location_wizard.py

@@ -1980,7 +1980,7 @@ class LocationWizard(wx.Object):
         elif proj == 'utm':
             proj4string = '+proj=%s +zone=%s' % (proj, utmzone)
             if utmhemisphere == 'south':
-                proj4string += '+south'
+                proj4string += ' +south'
         else:
             proj4string = '+proj=%s ' % (proj)