Explorar el Código

docs: update some calls to use new element names (https://trac.osgeo.org/grass/ticket/2409)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63763 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler hace 10 años
padre
commit
8a6dcc8504

+ 3 - 3
general/g.rename/g.rename.html

@@ -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>)

+ 4 - 4
gui/wxpython/animation/g.gui.animation.html

@@ -55,9 +55,9 @@ and then reload the maps to update the animation.
 <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 @@ g.gui.animation strds=precipitation_2000_2010
 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>
 
 

+ 2 - 2
gui/wxpython/core/render.py

@@ -17,7 +17,7 @@ Classes:
  - 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 @@ class Overlay(Layer):
         :param type: overlay type ('barscale', 'legend', etc.)
         :param cmd: GRASS command to render overlay,
                     given as list, e.g. ['d.legend',
-                    'rast=elevation@PERMANENT']
+                    'raster=elevation@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