1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<h2>DESCRIPTION</h2>
<em>t.create</em> is used to create space time datasets of
type raster (STRDS), 3D raster (STR3DS) and vector (STVDS).
<p>
Space time datasets represent spatio-temporal fields in the temporal
GRASS framework. They are designed to collect any amount of time
stamped maps with time intervals and time instances. The temporal
type of a space time dataset can be absolute (means with a fixed date)
or relative (only sequential maps) and must be set during
dataset creation along with the name and the description.
<p>
Time stamped maps can registered in and unregistered from space time
datasets. The spatio-temporal extent as well as the metadata of a space
time dataset is derived from its registered maps. Hence the metadata is
dependent from the dataset type (raster, 3D raster, vector).
<h2>EXAMPLE</h2>
<h3>Absolute STRDS dataset</h3>
Create a raster space time datasets
<div class="code"><pre>
t.create type=strds temporaltype=absolute \
output=precipitation_monthly \
title="Monthly precipitation" \
description="Dataset with monthly precipitation"
</pre></div>
<h3>Relative STVDS dataset</h3>
Create a vector space time datasets
<div class="code"><pre>
t.create type=stvds temporaltype=relative \
output=precipitation_monthly_30y \
title="Monthly precipitation 30 years" \
description="Test dataset with monthly average \
precipitation in the last 30 year"
</pre></div>
<h2>SEE ALSO</h2>
<em>
<a href="t.register.html">t.register</a>,
<a href="t.remove.html">t.remove</a>,
<a href="t.info.html">t.info</a>
</em>
<h2>AUTHOR</h2>
Sören Gebbert, Thünen Institute of Climate-Smart Agriculture
|