I'm confused about the "time" variable, and whether or not it is really read in, or whether it is actually the "date" variable that is read in by CAM/WACCM
The 3 time variables have values and metadata like this:
date -- 115, 214, 315, 415, ...
datesec -- 0, 0, 0, 0, ...
time -- 1, 2, 3, 4, ...
int date(time) ;
date:long_name = "current date (YYYYMMDD)" ;
int datesec(time) ;
datesec:long_name = "current seconds of current date" ;
double time(time) ;
time:long_name = "time" ;
time:units = "month number" ;
time:calendar = "noleap" ;
time:bounds = "time_bnds" ;
I am trying to specify monthly-mean values, with the exception that I want two values for september -- one for the first and one for the second half of the month
So I think my variables should look like this:
time=[1.0d,2,3,4,5,6,7,8,9,9,10,11,12]
date=[115,214,315,415,515,615,715,815,907,922,1015,1115,1215]
datesec =[0,0,0,0,0,0,0,0,0,0,0,0,0]
However, I'm concerned that something could get messed up if the "time" variable is actually used, since there are two entries with the value 9.
Should I make it something like 9, 9.5 instead?