-
Notifications
You must be signed in to change notification settings - Fork 177
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
Use JCB for assembling JEDI YAML files for atmospheric GDAS #2477
Merged
WalterKolczynski-NOAA
merged 31 commits into
NOAA-EMC:develop
from
danholdaway:feature/use_jcb_atm
May 9, 2024
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
32bd4ff
add some jcb things
danholdaway 1edba10
do not recurse inside jcb to avoid config files in sorc
danholdaway f8c4dea
Use of JCB for gdas 3dvar
danholdaway c3d43b9
Merge remote-tracking branch 'upstream/develop' into feature/use_jcb_atm
danholdaway aef1289
remove left over prints
danholdaway 8cc1422
unused import
danholdaway fccce33
refactor the way obs are decided
danholdaway 8e49292
remove rogue atm file
danholdaway 08d51f3
remove unused import
danholdaway a7d7b5d
letkf to jcb
danholdaway 9945964
towards letkf gdas tests working
danholdaway 70b0944
pynorm
danholdaway 1d50b11
update to jcb that has external algo YAMLs
danholdaway 5bd9b8d
keeping up with GDAS develop
danholdaway c8dcffb
clone jcb algo repo
danholdaway c784cc8
Merge remote-tracking branch 'upstream/develop' into feature/use_jcb_atm
danholdaway 4c48dfb
more updates for jcb algos
danholdaway 2681b64
gdas upgrade
danholdaway de6b1a2
Merge remote-tracking branch 'upstream/develop' into feature/use_jcb_atm
danholdaway 324d8a7
reset gdas hash
danholdaway 0d89f2f
update gdas hash
danholdaway 0a920cd
Merge remote-tracking branch 'upstream/develop' into feature/use_jcb_atm
danholdaway 70a4a33
fixes for increment step
danholdaway 647282e
Merge remote-tracking branch 'upstream/develop' into feature/use_jcb_atm
danholdaway f0df9ba
update gdash hash
danholdaway 62d72dd
Update GDASapp hash
danholdaway 6d0b8b6
Move GDASapp to develop
danholdaway b743ea0
Merge remote-tracking branch 'upstream/develop' into feature/use_jcb_atm
danholdaway a04f2ca
Merge branch 'develop' into feature/use_jcb_atm
WalterKolczynski-NOAA 14e2fad
Add back accidental removal of old way of building YAML
danholdaway 7337d14
fix indent norm
danholdaway File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Are the yaml's in the jcb repo under
configuration/
used?If so, we will need to think about how to move them to
parm/
for operational acceptance.Ideally, we would install
jcb
as a python package, and the yamls would be part of global-workflow/gdasapp.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.
I was tying to play around with submodules to see if jcb could not clone its submodules since in the context of global-workflow they are indeed not needed. But I was not successful. The submodule of jcb (jcb-gdas) is also a submodule of GDASapp and that would be where the configuration files that global-workflow uses actually comes in and gets linked to
parm/
. Perhaps we can brainstorm a better way of doing this so that jcb-gdas is not a submodule of jcb. It's like that primarily to facilitate easy testing of jcb in a standalone context but perhaps it could be done with pip dependency or some other way that I'm not thinking about.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.
jcb-algorithms repo has been established, moving the generic JEDI-algortithm YAMLs to the gdas parm. Now there should be no YAML files in non-parm directories that are used anywhere.