瀏覽代碼

wxGUI (location wizard): fix ll location (merge from devbr6, https://trac.osgeo.org/grass/changeset/31921)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@31922 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 17 年之前
父節點
當前提交
a3785ac4cd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/wxpython/gui_modules/location_wizard.py

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

@@ -1944,7 +1944,7 @@ class LocationWizard(wx.Object):
         # creating PROJ.4 string
         #
         if proj == 'll':
-            proj = 'longlat'
+            proj4string = '+proj=longlat'
         elif proj == 'utm':
             proj4string = '+proj=%s +zone=%s' % (proj, utmzone)
             if utmhemisphere == 'south':