[GRASS-SVN] r66318 - grass/trunk/gui/wxpython/location_wizard

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 23 22:04:22 PDT 2015


Author: ychemin
Date: 2015-09-23 22:04:21 -0700 (Wed, 23 Sep 2015)
New Revision: 66318

Modified:
   grass/trunk/gui/wxpython/location_wizard/wizard.py
Log:
fixed bug for planetary ellipsoid access

Modified: grass/trunk/gui/wxpython/location_wizard/wizard.py
===================================================================
--- grass/trunk/gui/wxpython/location_wizard/wizard.py	2015-09-23 21:41:08 UTC (rev 66317)
+++ grass/trunk/gui/wxpython/location_wizard/wizard.py	2015-09-24 05:04:21 UTC (rev 66318)
@@ -1149,7 +1149,7 @@
             self.scope = 'earth'
             for key in self.parent.ellipsoids.keys():
                 data.append([key, self.parent.ellipsoids[key][0]])
-        elif event.GetId() == self.radioEpsgx.GetId():
+        elif event.GetId() == self.radioEpsg.GetId():
             self.scope = 'planetary'
             for key in self.parent.planetary_ellipsoids.keys():
                 data.append([key, self.parent.planetary_ellipsoids[key][0]])



More information about the grass-commit mailing list