-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Missing time bounds (time_bnds) variable after data is resampled to new frequency (i.e., time averaging step).
After introducing this feature, the netcdf file should roughly look like this
netcdf file_with_time_bounds {
dimensions:
time = UNLIMITED ; // (2 currently)
lat = 3 ;
lon = 4 ;
bnds = 2 ; # <-- this entry
variables:
double time(time) ;
time:bounds = "time_bnds" ; # <-- this entry
time:units = "days since 2018" ;
time:calendar = "360_day" ;
time:axis = "T" ;
time:long_name = "time" ;
time:standard_name = "time" ;
double time_bnds(time, bnds) ; # <-- this entry
Reactions are currently unavailable
Metadata
Metadata
Labels
enhancementNew feature or requestNew feature or request