[GRASS-SVN] r66258 - grass/branches/releasebranch_7_0/temporal/t.register
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Sep 18 05:06:39 PDT 2015
Author: neteler
Date: 2015-09-18 05:06:39 -0700 (Fri, 18 Sep 2015)
New Revision: 66258
Modified:
grass/branches/releasebranch_7_0/temporal/t.register/t.register.html
Log:
t.register manual: extend manual
Modified: grass/branches/releasebranch_7_0/temporal/t.register/t.register.html
===================================================================
--- grass/branches/releasebranch_7_0/temporal/t.register/t.register.html 2015-09-18 12:05:52 UTC (rev 66257)
+++ grass/branches/releasebranch_7_0/temporal/t.register/t.register.html 2015-09-18 12:06:39 UTC (rev 66258)
@@ -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