[GRASS-SVN] r53464 - grass/branches/develbranch_6/gui/wxpython/lmgr
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Oct 18 04:38:13 PDT 2012
Author: martinl
Date: 2012-10-18 04:38:12 -0700 (Thu, 18 Oct 2012)
New Revision: 53464
Modified:
grass/branches/develbranch_6/gui/wxpython/lmgr/frame.py
Log:
wxGUI: improve OnSystemInfo(), Proj4 added
(merge r53460 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/lmgr/frame.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/lmgr/frame.py 2012-10-18 11:37:13 UTC (rev 53463)
+++ grass/branches/develbranch_6/gui/wxpython/lmgr/frame.py 2012-10-18 11:38:12 UTC (rev 53464)
@@ -778,19 +778,27 @@
from osgeo import gdal
gdalVersion = gdal.__version__
except:
- gdalVersion = _("unknown")
+ try:
+ gdalVersion = grass.Popen(['gdalinfo', '--version'], stdout = grass.PIPE).communicate()[0].rstrip('\n')
+ except:
+ gdalVersion = _("unknown")
+ try:
+ projVersion = RunCommand('proj', getErrorMsg = True)[1].splitlines()[0]
+ except:
+ projVersion = _("unknown")
self.goutput.WriteCmdLog(_("System Info"))
self.goutput.WriteLog("%s: %s\n"
"%s: %s\n"
"%s: %s (%s)\n"
"GDAL/OGR: %s\n"
+ "PROJ4: %s\n"
"Python: %s\n"
"wxPython: %s\n"
"%s: %s\n"% (_("GRASS version"), vInfo['version'],
_("GRASS SVN Revision"), vInfo['revision'],
_("GIS Library Revision"), vInfo['libgis_revision'], vInfo['libgis_date'].split(' ', 1)[0],
- gdalVersion,
+ gdalVersion, projVersion,
platform.python_version(),
wx.__version__,
_("Platform"), platform.platform()),
More information about the grass-commit
mailing list