-
Notifications
You must be signed in to change notification settings - Fork 202
Add capability to convert on the fly GSI netCDF diagnostics to IODA format #4146
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
base: develop
Are you sure you want to change the base?
Add capability to convert on the fly GSI netCDF diagnostics to IODA format #4146
Conversation
This will produce, for example in:
Where
|
@RussTreadon-NOAA @ADCollard one thing here is that the GSI diags are separate files for _ges and _anl, and I don't know which one ends up getting saved (depends on what is processed last). Do we need to find a way to keep both GsiHofXBc from ges and anl, can we just use ges? Thoughts? |
with gzip.open(diag, 'rb') as f_in: | ||
with open(output_file, 'wb') as f_out: | ||
f_out.write(f_in.read()) | ||
os.remove(diag) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to self for next week: I'm thinking I should move _ges to one directory and _anl to another directory, run the proc_gsi_ncdiag code twice, once on each directory, and save two tarballs of the raw IODA files, and perhaps only run the stats code on one of them (perhaps ges only?)
@CoryMartin-NOAA. I checked a JEDI atmstat tarball from the prjedi. The observation specific netcdf files contain The prjedi atmvar.yaml has
It's my impression that |
Description
This PR will add the capability to convert GSI netCDF diagnostic files to IODA-compliant netCDF files, which will also facilitate computing summary stats from GSI leveraging new, IODA-based tools.
Resolves #4145
Type of change
Change characteristics
Is this a breaking change (a change in existing functionality)? NO
Does this change require a documentation update? NO
Does this change require an update to any of the following submodules? YES
How has this been tested?
Example:
Checklist