Dear CF community,
I am trying to create a dataset that contains monthly mean diurnal cycles of radiative fluxes (i.e. the average day of each month), but I am not sure how to do this in a CF-compliant way. Example 7.10 does this for one month (Section 7.4 on Climatological statistics), so it seems natural to extend this example. Will the following extension of Example 7.10 to two consecutive months be correct?
Thanks for your help.
Regards,
Alejandro
dimensions:
time=48;
nv=2;
variables:
float temperature(time,lat,lon);
temperature:long_name="surface air temperature";
temperature:cell_methods="time: mean within days time: mean over days";
temperature:units="K";
double time(time);
time:climatology="climatology_bounds";
time:units="hours since 1997-4-1";
double climatology_bounds(time,nv);
data: // time coordinates translated to date/time format
time="1997-4-1 0:30", "1997-4-1 1:30", ... "1997-4-1 23:30", "1997-5-1 0:30", "1997-5-1 1:30", ... "1997-5-1 23:30";
climatology_bounds="1997-4-1 0:00", "1997-4-30 1:00",
"1997-4-1 1:00", "1997-4-30 2:00",
...
"1997-4-1 23:00", "1997-5-1 0:00" ;
"1997-5-1 0:00", "1997-5-31 1:00",
"1997-5-1 1:00", "1997-5-31 2:00",
...
"1997-5-1 23:00", "1997-5-31 0:00" ;
--
------------------------------------------------------------------
Dr Alejandro Bodas-Salcedo Earth Observation Research Scientist
Met Office Hadley Centre
FitzRoy Rd Exeter EX1 3PB United Kingdom
E-mail: alejandro.bodas at metoffice.gov.uk http://www.metoffice.gov.uk
See our guide to climate change at
http://www.metoffice.gov.uk/climate-change
------------------------------------------------------------------
Received on Wed Feb 10 2016 - 08:56:07 GMT