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