Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/tutorials/time_series/time_series_aggregations.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ import subprocess

# Ask GRASS where its Python packages are
sys.path.append(
subprocess.check_output([grassbin, "--config", "python_path"], text=True).strip()
subprocess.check_output(["grass", "--config", "python_path"], text=True).strip()
)

# Import the GRASS packages we need
import grass.script as gs
import grass.jupyter as gj

path_to_project = "eu_laea/italy_LST_daily"
path_to_project = "italy_eu_laea/italy_LST_daily"

# Start the GRASS session
session = gj.init(path_to_project);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ can create this file for you when you import data into GRASS.

::: {.callout-note}
Have a look at the
<a href="https://grass.osgeo.org/grass83/manuals/t.register.html">t.register</a>
<a href="https://grass.osgeo.org/grass-stable/manuals/t.register.html">t.register</a>
manual page and a dedicated
[wiki](https://grasswiki.osgeo.org/wiki/Temporal_data_processing/maps_registration)
with further examples.
Expand All @@ -294,7 +294,7 @@ and observe topological relationships among STDS.

#### Temporal plot for Trento, Italy

The temporal plot tool, [`g.gui.tplot`](https://grass.osgeo.org/grass83/manuals/g.gui.tplot.html),
The temporal plot tool, [`g.gui.tplot`](https://grass.osgeo.org/grass-stable/manuals/g.gui.tplot.html),
allows to plot the time series values of raster or vector space-time
datasets. In this case, we will plot the LST time series for the city of
Trento, Italy.
Expand Down Expand Up @@ -424,7 +424,7 @@ same filtering can be applied in tools to determine maps that will be processed.

### Descriptive statistics

The tool [`t.rast.univar`](https://grass.osgeo.org/grass-stable/manuals/t.vect.univar.html)
The tool [`t.rast.univar`](https://grass.osgeo.org/grass-stable/manuals/t.rast.univar.html)
calculates univariate statistics from the non-null cells of each raster
map within STRDS.
By default it returns the name of the map, the start and end date of the
Expand Down
Loading