[GRASS-SVN] r64297 - grass/branches/releasebranch_7_0/gui/wxpython/core
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Jan 24 08:55:22 PST 2015
Author: annakrat
Date: 2015-01-24 08:55:21 -0800 (Sat, 24 Jan 2015)
New Revision: 64297
Modified:
grass/branches/releasebranch_7_0/gui/wxpython/core/utils.py
Log:
wxGUI: fix finding fully qualified name for 3d rasters (merge from trunk, r64296)
Modified: grass/branches/releasebranch_7_0/gui/wxpython/core/utils.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/core/utils.py 2015-01-24 16:54:21 UTC (rev 64296)
+++ grass/branches/releasebranch_7_0/gui/wxpython/core/utils.py 2015-01-24 16:55:21 UTC (rev 64297)
@@ -160,6 +160,8 @@
try:
if layerType in ('raster', 'rgb', 'his'):
findType = 'cell'
+ elif layerType == '3d-raster':
+ findType = 'grid3'
else:
findType = layerType
mapset = grass.find_file(mapname, element = findType)['mapset']
More information about the grass-commit
mailing list