Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify naming and attributes of time variables on history files to be consistent with other CESM components #53

Open
phillips-ad opened this issue Apr 4, 2022 · 0 comments · May be fixed by #66

Comments

@phillips-ad
Copy link

These changes are being requested to improve the ease-of-access of CESM data and to normalize the look of the metadata across CESM components. See ESCOMP/CESM#194 and especially the google doc referenced from ESCOMP/CESM#194 (comment).

Current time array output:

double time(time) ;
	time:long_name = "time" ;
	time:units = "days since YYYY-MM-DD HH:MM:SS" ;
	time:calendar = "noleap" ;
	time:bounds = "time_bounds" ;
double time_bounds(time, hist_interval) ;
	time_bounds:long_name = "history time interval endpoints" ;

Proposed time array output:

double time(time) ;
	time:long_name = "time" ;
	time:units = "days since YYYY-MM-DD HH:MM:SS" ;
	time:calendar = "noleap" ;
	time:bounds = "time_bounds" ;
double time_bounds(time, nbnd) ;
	time_bounds:long_name = "time interval endpoints" ;
	time_bounds:units = "days since 2015-01-01 00:00:00" ;
	time_bounds:calendar = "noleap" ;

Changes made: add units/calendar attributes to time_bounds, modify time_bounds@long_name, change 2nd dimension name of time_bounds to nbnd.

@billsacks @phillips-ad @strandwg are filing similar issues for each component.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

Successfully merging a pull request may close this issue.

1 participant