Skip to content

create time bounds after time averaging #176

@siligam

Description

@siligam

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

Metadata

Metadata

Labels

enhancementNew feature or request

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions