-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR is a companion to Global Workflow PR [#2992](NOAA-EMC/global-workflow#2992) and GDASApp PR [#1312](NOAA-EMC/GDASApp#1312). It add observation and bias files staging templates required for the above Global Workflow PR.
- Loading branch information
1 parent
2b46aa1
commit 7717c0e
Showing
2 changed files
with
18 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mkdir: | ||
- '{{atmosphere_obsbiasout_path}}' | ||
copy: | ||
{% for observation_from_jcb in observations %} | ||
{% if use_observer(observation_from_jcb) %} | ||
{% if observation_from_jcb in bias_files %} | ||
- ['{{atmosphere_obsbiasroot_path}}/{{atmosphere_obsbiasin_prefix}}{{bias_files[observation_from_jcb]}}', '{{atmosphere_obsbiasin_path}}'] | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
mkdir: | ||
- '{{atmosphere_obsdatain_path}}' | ||
copy: | ||
{% for observation_from_jcb in observations %} | ||
{% if use_observer(observation_from_jcb) %} | ||
- ['{{atmosphere_obsdataroot_path}}/{{atmosphere_obsdatain_prefix}}{{observation_from_jcb}}{{atmosphere_obsdatain_suffix}}', '{{atmosphere_obsdatain_path}}'] | ||
{% endif %} | ||
{% endfor %} |