Added by jyoti lodha almost 6 years ago
As I have to calculate 30 year moving average of temperature file, can we use using Runmean command?
cdo runmean,31 test.nc run.nc Is this ouptut is correct?
Waiting for a positive reply.
Thanks
Hi Jyothi,
the answer is partly yes. Use runmean operator to compute the running mean over a number of timesteps.
If you want to compute a 30 years running mean from 1975-2004 (your file contains the years 1975-2005) then
cdo runmean,30 infile outfileUsing runmean,31 would compute the 31 years running mean from 1975-2005.
-Karin