|
@@ -148,9 +148,10 @@ g.mlist -e type=rast separator=comma pattern="precip_total.(199[7-9]|200[0-9]|20
|
|
|
<h3>Maps whose region overlaps with a saved region</h3>
|
|
|
|
|
|
List all raster maps starting with "tmp_" whose region overlaps with
|
|
|
-a saved region "myregion":
|
|
|
+the region of "test" raster map:
|
|
|
<div class="code"><pre>
|
|
|
-g.mlist type=rast pattern='tmp_*' region=myregion
|
|
|
+g.region rast=test save=test_region
|
|
|
+g.mlist type=rast pattern='tmp_*' region=test_region
|
|
|
</pre></div>
|
|
|
|
|
|
List "tmp0"..."tmp9" vector maps whose region overlaps with
|
|
@@ -159,6 +160,16 @@ the current region:
|
|
|
g.mlist -r type=vect pattern='^tmp[0-9]$' region=.
|
|
|
</pre></div>
|
|
|
|
|
|
+List all raster and vector maps whose region overlaps with the default region
|
|
|
+of the PERMANENT mapset in the current location (DEFAULT_WIND):
|
|
|
+<div class="code"><pre>
|
|
|
+g.mlist type=rast,vect region=*
|
|
|
+</pre></div>
|
|
|
+
|
|
|
+Note that, without <tt>region=*</tt>, <tt>g.mlist type=rast,vect</tt> simply
|
|
|
+lists all available raster and vector maps from the current search path
|
|
|
+regardless of their region.
|
|
|
+
|
|
|
<h2>SEE ALSO</h2>
|
|
|
|
|
|
<em>
|