[GRASS-SVN] r63763 - in grass/trunk: general/g.rename gui/wxpython/animation gui/wxpython/core

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Dec 26 03:01:43 PST 2014


Author: neteler
Date: 2014-12-26 03:01:43 -0800 (Fri, 26 Dec 2014)
New Revision: 63763

Modified:
   grass/trunk/general/g.rename/g.rename.html
   grass/trunk/gui/wxpython/animation/g.gui.animation.html
   grass/trunk/gui/wxpython/core/render.py
Log:
docs: update some calls to use new element names (#2409)

Modified: grass/trunk/general/g.rename/g.rename.html
===================================================================
--- grass/trunk/general/g.rename/g.rename.html	2014-12-25 16:33:41 UTC (rev 63762)
+++ grass/trunk/general/g.rename/g.rename.html	2014-12-26 11:01:43 UTC (rev 63763)
@@ -4,9 +4,9 @@
 element files in the user's current mapset.  The user can
 specify all necessary information to <em>g.rename</em> on
 the command line, by specifying:  the type of data base
-element to be renamed (one or more of:  <b>rast</b>,
-<b>vect</b>, <b>icon</b>, <b>labels</b>, <b>sites</b>,
-
+element to be renamed (one or more of:  <b>raster</b>,
+<b>raster_3d</b>, <b>vector</b>, <b>icon</b>, <b>labels</b>,
+<!-- old_vector, ascii_vector -->
 <b>region</b>, and <b>group</b>); the specific file element
 in the current mapset to be renamed (<em>old</em>); and the
 new name to be assigned to this file element (<em>new</em>)

Modified: grass/trunk/gui/wxpython/animation/g.gui.animation.html
===================================================================
--- grass/trunk/gui/wxpython/animation/g.gui.animation.html	2014-12-25 16:33:41 UTC (rev 63762)
+++ grass/trunk/gui/wxpython/animation/g.gui.animation.html	2014-12-26 11:01:43 UTC (rev 63763)
@@ -55,9 +55,9 @@
 <h2>EXAMPLES</h2>
 
 <div class="code"><pre>
-g.gui.animation rast=rmap1,rmap2,rmap3
+g.gui.animation raster=rmap1,rmap2,rmap3
 
-g.gui.animation vect=vmap1,vmap2,vmap3
+g.gui.animation vector=vmap1,vmap2,vmap3
 
 g.gui.animation strds=precipitation_2000_2010
 </pre></div>
@@ -65,13 +65,13 @@
 The loading of a series of maps into the Animation Tool can be simplified
 with <em><a href="g.list.html">g.list</a></em> (back ticks syntax works for Linux and Mac only):
 <div class="code"><pre>
-g.gui.animation rast=`g.list type=rast mapset=. separator=comma pattern="precip*"`
+g.gui.animation raster=`g.list type=raster mapset=. separator=comma pattern="precip*"`
 </pre></div>
 
 Using extended regular expressions, the list of a series of raster maps can be subset by
 e.g., numeric range (here: precipitation for the years 1997-2012):
 <div class="code"><pre>
-g.gui.animation rast=`g.list -e type=rast mapset=. separator=comma pattern="precip_total.(199[7-9]|200[0-9]|201[0-2]).sum"`
+g.gui.animation raster=`g.list -e type=raster mapset=. separator=comma pattern="precip_total.(199[7-9]|200[0-9]|201[0-2]).sum"`
 </pre></div>
 
 

Modified: grass/trunk/gui/wxpython/core/render.py
===================================================================
--- grass/trunk/gui/wxpython/core/render.py	2014-12-25 16:33:41 UTC (rev 63762)
+++ grass/trunk/gui/wxpython/core/render.py	2014-12-26 11:01:43 UTC (rev 63763)
@@ -17,7 +17,7 @@
  - render::Overlay
  - render::Map
 
-(C) 2006-2013 by the GRASS Development Team
+(C) 2006-2014 by the GRASS Development Team
 
 This program is free software under the GNU General Public License
 (>=v2). Read the file COPYING that comes with GRASS for details.
@@ -373,7 +373,7 @@
         :param type: overlay type ('barscale', 'legend', etc.)
         :param cmd: GRASS command to render overlay,
                     given as list, e.g. ['d.legend',
-                    'rast=elevation at PERMANENT']
+                    'raster=elevation at PERMANENT']
         :param map: render.Map instance
         :param active: layer is active, will be rendered only if True
         :param hidden: layer is hidden, won't be listed in Layer Manager if True



More information about the grass-commit mailing list