![]() |
![]()
| ![]() |
![]()
NAMEt.rast.series - Performs different aggregation algorithms from r.series on all or a subset of raster maps in a space time raster dataset. KEYWORDStemporal, aggregation, series, raster, time SYNOPSISt.rast.series
Flags:Parameters:
DESCRIPTIONThe input of this module is a single space time raster dataset, the output is a single raster map layer. A subset of the input space time raster dataset can be selected using the where option. The sorting of the raster map layer can be set using the order option. Be aware that the order of the maps can significantly influence the result of the aggregation (e.g.: slope). By default the maps are ordered by start_time. t.rast.series is a simple wrapper for the raster module r.series. It supports a subset of the aggregation methods of r.series. NOTESTo avoid problems with too many open files, by default, the maximum number of open files is set to 1000. If the number of input raster files exceeds this number, the -z flag will be invoked. Because this will slow down processing, the user can set a higher limit with the file_limit parameter. Note that file_limit limit should not exceed the user-specific limit on open files set by your operating system. See the Wiki for more information. PerformanceTo enable parallel processing, the user can specify the number of threads to be used with the nprocs parameter (default 1). The memory parameter (default 300 MB) can also be provided to determine the size of the buffer in MB for computation. Both parameters are passed to r.series. To take advantage of the parallelization, GRASS GIS needs to be compiled with OpenMP enabled. EXAMPLESEstimate the average temperature for the whole time seriesHere the entire stack of input maps is considered:
t.rast.series input=tempmean_monthly output=tempmean_average method=average Estimate the average temperature for a subset of the time seriesHere the stack of input maps is limited to a certain period of
time:
t.rast.series input=tempmean_daily output=tempmean_season method=average \ Climatology: single month in a multi-annual time seriesBy considering only a single month in a multi-annual time series
the so-called climatology can be computed. Estimate average temperature for
all January maps in the time series:
t.rast.series input=tempmean_monthly \ Generalizing a bit, we can estimate monthly climatologies for all
months by means of different methods
for i in `seq -w 1 12` ; do SEE ALSOr.series, t.create, t.info Temporal data processing Wiki AUTHORSören Gebbert, Thünen Institute of Climate-Smart Agriculture SOURCE CODEAvailable at: t.rast.series source code (history) Latest change: Wednesday Nov 27 22:53:26 2024 in commit: b90ce69e88409469369ec1edb86fde8ec822af8b Main index | Temporal index | Topics index | Keywords index | Graphical index | Full index © 2003-2025 GRASS Development Team, GRASS GIS 8.4.1 Reference Manual
|