diff --git a/temporal/t.rast.series/t.rast.series.html b/temporal/t.rast.series/t.rast.series.html index 6be1d56445e..f8dfdce412a 100644 --- a/temporal/t.rast.series/t.rast.series.html +++ b/temporal/t.rast.series/t.rast.series.html @@ -12,6 +12,15 @@
-for i in `seq -w 1 12` ; do - for m in average stddev minimum maximum ; do +for i in `seq -w 1 12` ; do + for m in average stddev minimum maximum ; do t.rast.series input=tempmean_monthly method=${m} output=tempmean_${m}_${i} \ where="strftime('%m', start_time)='${i}'" done diff --git a/temporal/t.rast.series/t.rast.series.py b/temporal/t.rast.series/t.rast.series.py index 09b3eb95344..5651d3b7a58 100755 --- a/temporal/t.rast.series/t.rast.series.py +++ b/temporal/t.rast.series/t.rast.series.py @@ -62,6 +62,12 @@ # % answer: start_time # %end +# %option G_OPT_M_NPROCS +# %end + +# %option G_OPT_MEMORYMB +# %end + # %option G_OPT_T_WHERE # %end @@ -95,6 +101,8 @@ def main(): method = options["method"] quantile = options["quantile"] order = options["order"] + memory = options["memory"] + nprocs = options["nprocs"] where = options["where"] add_time = flags["t"] nulls = flags["n"] @@ -148,6 +156,8 @@ def main(): overwrite=grass.overwrite(), method=method, quantile=quantile, + memory=memory, + nprocs=nprocs, ) except CalledModuleError: grass.fatal(_("%s failed. Check above error messages.") % "r.series")