fnl 6 hourly data mean
Added by Hiren Dave over 10 years ago
I am having 6 hourly grib data files (four data files per day) and I want to perform mean of four file (00Z,06Z,12Zand 14Z)to get daily values. what should I do?
Replies (1)
RE: fnl 6 hourly data mean - Added by Uwe Schulzweida over 10 years ago
Combine the result of the CDO operators mergetime and daymean. Here is an example:
cdo daymean -mergetime 'file??Z' resultThe assumed file names in this example are: file00Z file06Z file12Z and file18Z.
Read section "operator chaining" (https://code.zmaw.de/projects/cdo/embedded/1.6.3/cdo.html#x1-90001.2.3) for more information about wildcards in filenames.