[GRASS-SVN] r66257 - grass/trunk/temporal/t.register

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Sep 18 05:05:53 PDT 2015


Author: neteler
Date: 2015-09-18 05:05:52 -0700 (Fri, 18 Sep 2015)
New Revision: 66257

Modified:
   grass/trunk/temporal/t.register/t.register.html
Log:
t.register manual: extend manual

Modified: grass/trunk/temporal/t.register/t.register.html
===================================================================
--- grass/trunk/temporal/t.register/t.register.html	2015-09-18 09:07:24 UTC (rev 66256)
+++ grass/trunk/temporal/t.register/t.register.html	2015-09-18 12:05:52 UTC (rev 66257)
@@ -43,6 +43,11 @@
 
 <h2>INPUT FILE FORMAT</h2>
 
+The input file consists of a list of map names, optionally along with time stamps.
+Each map name is to be stored in a row in this file.
+<p>
+There are several options to register maps:
+<p>
 Specification of map names:
 <div class="code"><pre>
 prec_1
@@ -53,6 +58,7 @@
 prec_6
 </pre></div>
 
+<p>
 Specification of map names and the absolute start time (date) of the
 time instances:
 <div class="code"><pre>
@@ -64,6 +70,7 @@
 prec_6|2001-06-01
 </pre></div>
 
+<p>
 Specification of map names and the absolute time stamp (datetime):
 <div class="code"><pre>
 terra_lst_day20020113|2002-01-13 10:30
@@ -73,6 +80,7 @@
 terra_lst_day20020117|2002-01-17 10:30
 </pre></div>
 
+<p>
 Specification of the map name and the absolute time interval with start
 and end time:
 <div class="code"><pre>
@@ -88,10 +96,24 @@
 
 <h3>North Carolina dataset</h3>
 
+<h4>Using a text file</h4>
 Register maps in a absolute space time dataset, creating a time interval
 
 <div class="code"><pre>
+# first:  prepare a text file with a list of input maps (see above)
+# second: register maps
 t.register -i type=raster input=precipitation_monthly \
+    file=list_of_input_maps.txt start=2009-01-01 \
+    increment="1 months"
+</pre></div>
+
+
+<h4>Using <em>g.list</em> to generate the input</h4>
+
+Register maps in a absolute space time dataset, creating a time interval
+
+<div class="code"><pre>
+t.register -i type=raster input=precipitation_monthly \
     maps=`g.list raster pattern="*precip*" sep=comma` start=2009-01-01 \
     increment="1 months"
 </pre></div>



More information about the grass-commit mailing list