Skip to content

Commit

Permalink
temporal: various updates
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Dec 14, 2024
1 parent e5bd683 commit a173a8f
Show file tree
Hide file tree
Showing 19 changed files with 34 additions and 39 deletions.
7 changes: 1 addition & 6 deletions temporal/t.copy/t.copy.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,4 @@ <h2>SEE ALSO</h2>

<h2>AUTHOR</h2>

Markus Metz, mundialis

<!--
<p>
<i>Last changed: $Date$</i>
-->
Markus Metz, <a href="https://www.mundialis.de">mundialis</a>
4 changes: 2 additions & 2 deletions temporal/t.merge/t.merge.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h2>DESCRIPTION</h2>

This module is designed to register the maps of several input space
time datasets in a single output dataset. The datasets to merge can be
The <em>t.merge</em> module is designed to register the maps of several input
space time datasets in a single output dataset. The datasets to merge can be
either space time raster, 3D raster or vector datasets and must have
the same temporal type (absolute or relative).
<p>
Expand Down
2 changes: 1 addition & 1 deletion temporal/t.rast.algebra/t.rast.algebra.html
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ <h2>SEE ALSO</h2>
<h2>REFERENCES</h2>

The use of this module requires the following software to be installed:
<a href="http://www.dabeaz.com/ply/">PLY(Python-Lex-Yacc)</a>
<a href="https://www.dabeaz.com/ply//">PLY(Python-Lex-Yacc)</a>

<p>
<div class="code"><pre>
Expand Down
2 changes: 1 addition & 1 deletion temporal/t.rast.out.vtk/t.rast.out.vtk.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h2>DESCRIPTION</h2>

This module exports all maps registered in a space time raster datasets
<em>t.rast.out.vtk</em> exports all maps registered in a space time raster datasets
as VTK legacy files using a numerical numbering scheme. The VTK files
can be visualized with any VTK based visualize. Our preferred tool is
ParaView. The VTK legacy files are created using <b>r.out.vtk</b>.
Expand Down
4 changes: 2 additions & 2 deletions temporal/t.rast.univar/t.rast.univar.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ <h2>SEE ALSO</h2>

<h2>AUTHOR</h2>

S&ouml;ren Gebbert, Th&uuml;nen Institute of Climate-Smart Agriculture
Stefan Blumentrath, (Support for zones, parallel processing, and spatial relations)
S&ouml;ren Gebbert, Th&uuml;nen Institute of Climate-Smart Agriculture<br>
Stefan Blumentrath (support for zones, parallel processing, and spatial relations)
2 changes: 1 addition & 1 deletion temporal/t.rast3d.algebra/t.rast3d.algebra.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h3>NOTES</h3>

<h2>REFERENCES</h2>

<a href="http://www.dabeaz.com/ply/">PLY(Python-Lex-Yacc)</a>
<a href="https://www.dabeaz.com/ply//">PLY(Python-Lex-Yacc)</a>

<h2>SEE ALSO</h2>

Expand Down
4 changes: 2 additions & 2 deletions temporal/t.rast3d.univar/t.rast3d.univar.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ <h2>SEE ALSO</h2>

<h2>AUTHOR</h2>

S&ouml;ren Gebbert, Th&uuml;nen Institute of Climate-Smart Agriculture
Stefan Blumentrath, (Support for zones)
S&ouml;ren Gebbert, Th&uuml;nen Institute of Climate-Smart Agriculture<br>
Stefan Blumentrath (support for zones)
4 changes: 1 addition & 3 deletions temporal/t.register/t.register.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,7 @@ <h3>Importing and registering ECA&amp;D climatic data</h3>
Europe based on ECA&amp;D information.

Download and decompress mean temperature data from:
<a href="http://eca.knmi.nl/download/ensembles/data/Grid_0.25deg_reg/">here</a>
by accepting their
<a href="http://eca.knmi.nl/download/ensembles/ensembles.php">Terms of use</a>.
<a href="https://surfobs.climate.copernicus.eu/dataaccess/access_eobs.php#datafiles">here</a>.

<div class="code"><pre>
# import E-OBS V12 into a lat-long project (alternatively, use r.external)
Expand Down
14 changes: 7 additions & 7 deletions temporal/t.remove/t.remove.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ <h2>DESCRIPTION</h2>
The module <em>t.remove</em> removes space time datasets (STRDS, STR3DS,
STVDS) from the temporal database. In other words, by default it deletes
the relevant database entries. It can also unregister maps from temporal
database using the recursive mode <b>-r</b> (recursive)
database using the recursive mode <b>-r</b> (recursive).
<p>
Optionally, also the raster, 3D raster and vector maps of the space time
datasets can be removed from the current mapset using the <b>-d</b> (delete)
Expand All @@ -22,23 +22,23 @@ <h2>EXAMPLE</h2>
raster maps) are removed:

<div class="code"><pre>
#Create new and empty STRDS
# Create new and empty STRDS
t.create output=precip_months_sum semantictype=mean \
title="Monthly sum of precipitation" \
description="Monthly sum of precipitation for the \
North Carolina sample data"

#Register maps from sample dataset (selecting a subset with g.list)
# Register maps from sample dataset (selecting a subset with g.list)
t.register -i type=raster input=precip_months_sum \
maps=$(g.list type=raster pattern="201*_precip" separator=comma) \
start="2010-01-01" increment="1 months"

#Create some new data by aggregating with 1 years granularity
# Create some new data by aggregating with 1 years granularity
t.rast.aggregate input=precip_months_sum \
output=precip_years_sum basename=precip_years_sum granularity="1 \
years" method=sum
output=precip_years_sum basename=precip_years_sum \
granularity="1 years" method=sum

#Remove all newly produced data:
# Remove all newly produced data:

# a) the aggregated STRDS with 1 years granularity along with its raster maps
t.remove -df type=strds input=precip_years_sum
Expand Down
7 changes: 4 additions & 3 deletions temporal/t.rename/t.rename.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<h2>DESCRIPTION</h2>

This module renames space time datasets of different types (STRDS, STVDS, STR3DS)
and updates the space time dataset register entries of the registered maps.
The <em>t.rename</em> module module renames space time datasets of different
types (STRDS, STVDS, STR3DS) and updates the space time dataset register
entries of the registered maps.

<h2>NOTES</h2>

Expand All @@ -12,7 +13,7 @@ <h2>EXAMPLE</h2>
A new vector space time dataset will be created, renamed and in the end removed

<div class="code"><pre>
#Create new and empty STVDS
# Create new and empty STVDS
t.create type=stvds output=toberenamed semantictype=mean \
title="Example to rename" \
description="This is an example just to show how rename"
Expand Down
2 changes: 1 addition & 1 deletion temporal/t.sample/t.sample.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h2>DESCRIPTION</h2>

The purpose of this module is to compute and to show spatio-temporal
The purpose of <em>t.sample</em> is to compute and to show spatio-temporal
relations between space time datasets of different type. Several input
space time datasets are sampled by a <em>sample</em> space time dataset
using temporal topological relations. The types of the input space time
Expand Down
2 changes: 1 addition & 1 deletion temporal/t.select/t.select.html
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ <h2>EXAMPLES</h2>

<h2>REFERENCES</h2>

<a href="http://www.dabeaz.com/ply/">PLY(Python-Lex-Yacc)</a>
<a href="https://www.dabeaz.com/ply//">PLY(Python-Lex-Yacc)</a>
<p>
Gebbert, S., Leppelt, T., Pebesma, E., 2019. A topology based spatio-temporal map algebra for
big data analysis. Data 4, 86. <a href="https://doi.org/10.3390/data4020086">https://doi.org/10.3390/data4020086</a>
Expand Down
3 changes: 2 additions & 1 deletion temporal/t.support/t.support.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<h2>DESCRIPTION</h2>

This module is dedicated to modify and update the metadata of a space time dataset.
The <em>t.support</em> module is dedicated to modify and update the metadata of
a space time dataset.
<p>
The title, description and the semantic type can be modified.
<p>
Expand Down
4 changes: 2 additions & 2 deletions temporal/t.unregister/t.unregister.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h2>DESCRIPTION</h2>

This module is designed to unregister raster, 3D raster and vector map
layers from space time datasets and the temporal database.
The <em>t.unregister</em> module is designed to unregister raster, 3D raster
and vector map layers from space time datasets and the temporal database.

<p>
Map layer that should be unregistered from the temporal database can be
Expand Down
4 changes: 2 additions & 2 deletions temporal/t.upgrade/t.upgrade.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h2>DESCRIPTION</h2>

This module upgrades the temporal database in the current mapset
from version 2 (default in GRASS 7) to 3 (default in GRASS 8).
The <em>t.upgrade</em> module upgrades the temporal database in the current
mapset from version 2 (default in GRASS 7) to 3 (default in GRASS 8).
The version 3 introduces a semantic label support, see
<em><a href="i.band.library.html">i.band.library</a></em> for details.

Expand Down
2 changes: 1 addition & 1 deletion temporal/t.vect.algebra/t.vect.algebra.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ <h3>Examples: </h3>

<h2>REFERENCES</h2>

<a href="http://www.dabeaz.com/ply/">PLY(Python-Lex-Yacc)</a>
<a href="https://www.dabeaz.com/ply//">PLY(Python-Lex-Yacc)</a>

<h2>SEE ALSO</h2>

Expand Down
2 changes: 1 addition & 1 deletion temporal/t.vect.extract/t.vect.extract.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h2>DESCRIPTION</h2>
<h2>EXAMPLE</h2>

In the following example a new space time vector dataset will be create
with all the data later than 2000:
with all the data later than the year 2000:

<div class="code"><pre>
t.vect.extract input=shoreline where="start_time &gt; 2000" \
Expand Down
2 changes: 1 addition & 1 deletion temporal/t.vect.list/t.vect.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ <h2>DESCRIPTION</h2>

<!-- this needs to be expanded -->

This module provides the same functionality as
The <em>t.vect.list</em> module provides the same functionality as
<a href="t.rast.list.html">t.rast.list</a>, the only difference is the
vector map layer metadata.

Expand Down
2 changes: 1 addition & 1 deletion temporal/t.vect.observe.strds/t.vect.observe.strds.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h2>EXAMPLE</h2>
+----------------------------------------------------------------------------+
| Name: precip_stations_monthly |
| Mapset: climate_2009_2012 |
| Project: nc_spm_temporal_workshop |
| Project: nc_spm_temporal_workshop |
| Database: /grassdata |
| Title: North Carolina 30 year precipitation normals (3D) |
| Map scale: 1:1 |
Expand Down

0 comments on commit a173a8f

Please sign in to comment.