-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Description
I am trying to use xray with some CESM POP model netCDF output, which supposedly follows CF-1.0 conventions. It is failing because the models time units are "'days since 0000-01-01 00:00:00". When calling open_dataset, I get the following error:
ValueError: unable to decode time units u'days since 0000-01-01 00:00:00' with the default calendar. Try opening your dataset with decode_times=False. Full traceback:
Traceback (most recent call last):
File "/home/rpa/xray/xray/conventions.py", line 372, in __init__
# Otherwise, tracebacks end up swallowed by Dataset.__repr__ when users
File "/home/rpa/xray/xray/conventions.py", line 145, in decode_cf_datetime
dates = _decode_datetime_with_netcdf4(flat_num_dates, units, calendar)
File "/home/rpa/xray/xray/conventions.py", line 97, in _decode_datetime_with_netcdf4
dates = np.asarray(nc4.num2date(num_dates, units, calendar))
File "netCDF4/_netCDF4.pyx", line 4522, in netCDF4._netCDF4.num2date (netCDF4/_netCDF4.c:50388)
File "netCDF4/_netCDF4.pyx", line 4337, in netCDF4._netCDF4._dateparse (netCDF4/_netCDF4.c:48234)
ValueError: year is out of range
Full metadata for the time variable:
double time(time) ;
time:long_name = "time" ;
time:units = "days since 0000-01-01 00:00:00" ;
time:bounds = "time_bound" ;
time:calendar = "noleap" ;
I guess this is a problem with the underlying netCDF4 num2date package?