-
Notifications
You must be signed in to change notification settings - Fork 189
Adds GDAS GEMPAK jobs to rocoto task mesh #2126
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
Adds GDAS GEMPAK jobs to rocoto task mesh #2126
Conversation
@KateFriedman-NOAA @WalterKolczynski-NOAA @aerorahul First of all I apologize for requiring multiple PR for this issue. I will try not to make the same errors in the future which have necessitated this. Secondly, I worked through all of the comments and suggestions from the previous PR attempt (see #2103). If I missed something, please let me know such that I can resolved ASAP. I appreciate your patience. |
if self.do_bufrsnd: | ||
tasks += ['postsnd'] | ||
|
||
if self.do_gempak: | ||
tasks += ['gempak'] | ||
tasks += ['gempakmeta'] | ||
tasks += ['gempakncdcupapgif'] | ||
tasks += ['gempakpgrb2spec'] | ||
|
||
if self.do_awips: | ||
tasks += ['awips_20km_1p0deg'] | ||
tasks += ['awips_g2'] | ||
tasks += ['fbwinds'] | ||
|
||
if self.do_wafs: | ||
tasks += ['wafs', 'wafsgcip', 'wafsgrib2', 'wafsgrib20p25', 'wafsblending', 'wafsblending0p25'] |
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.
This was moved earlier in the script in #2110 (except WAFS, which was deleted). Please make any changes in the new section and remove this.
if self.do_npoess: | ||
configs += ['npoess'] |
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.
Why is this being removed?
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.
See #2103 (comment)
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.
Fine doing away with the switch, but you still have to add the config file where the other gempak config is being loaded.
@@ -61,7 +61,6 @@ def __init__(self, conf: Configuration) -> None: | |||
self.do_genesis = _base.get('DO_GENESIS', True) | |||
self.do_genesis_fsu = _base.get('DO_GENESIS_FSU', False) | |||
self.do_metp = _base.get('DO_METP', False) | |||
self.do_npoess = _base.get('DO_NPOESS', False) |
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.
Same, why is this being removed?
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.
See #2103 (comment)
Description
This PR addresses issue #1219. Rocoto task
jobs/rocoto/gempak.sh
was updated to supportJGDAS_ATMOS_GEMPAK
. Rocoto taskjobs/rocoto/gempakmeta.sh
was added to supportJGFS_ATMOS_GEMPAK_META
andJGDAS_ATMOS_GEMPAK_META_NCDC
.Resolves #1219
References #1222 #2073
NOTE This is a replicated PR open to resolve developer mishap with Github interface.
Type of change
Change characteristics
The Rocoto XML configuration has been executed as follows.
The resulting Rocoto workflow is as follows.
Checklist