Open
Conversation
CoryMartin-NOAA
approved these changes
Jan 12, 2026
Contributor
CoryMartin-NOAA
left a comment
There was a problem hiding this comment.
Looks good, thanks. Presumably you want your jcb-gdas changes updated as part of this PR too?
Contributor
RussTreadon-NOAA
left a comment
There was a problem hiding this comment.
Changes look good. Just a question if additional changes are needed.
| atmosphere_obsbiasin_path: "{{DATA}}/obs/" | ||
| atmosphere_obsbiasin_prefix: "{{GPREFIX}}" | ||
| atmosphere_obsbiasin_suffix: ".satbias.nc" | ||
| atmosphere_obsbiasin_acft_suffix: ".acftbias.nc" |
Contributor
There was a problem hiding this comment.
The parm/atm/jcb-base.yaml.j2 which I successfully tested on Hercules includes additional changes.
@@ -101,16 +101,20 @@ atmosphere_obsdataout_suffix: "_{{ current_cycle | to_YMDH
}}.nc"
atmosphere_obsbiasin_path: "{{DATA}}/obs/"
atmosphere_obsbiasin_prefix: "{{GPREFIX}}"
atmosphere_obsbiasin_suffix: ".satbias.nc"
+atmosphere_obsbiasin_acft_suffix: ".acftbias.nc"
atmosphere_obstlapsein_prefix: "{{GPREFIX}}"
atmosphere_obstlapsein_suffix: ".tlapse.txt"
atmosphere_obsbiascovin_prefix: "{{GPREFIX}}"
atmosphere_obsbiascovin_suffix: ".satbias_cov.nc"
+atmosphere_obsbiascovin_acft_suffix: ".acftbias_cov.nc"
atmosphere_obsbiasout_path: "{{DATA}}/bc/"
atmosphere_obsbiasout_prefix: "{{APREFIX}}"
atmosphere_obsbiasout_suffix: ".satbias.nc"
+atmosphere_obsbiasout_acft_suffix: ".acftbias.nc"
atmosphere_obsbiascovout_prefix: "{{APREFIX}}"
atmosphere_obsbiascovout_suffix: ".satbias_cov.nc"
+atmosphere_obsbiascovout_acft_suffix: ".acftbias_cov.nc"
bias_files_dict:
radiance_atms_n20: rad_varbc_params.tar
@@ -122,6 +126,7 @@ bias_files_dict:
radiance_ssmis_f18: rad_varbc_params.tar
radiance_cris-fsr_n20: rad_varbc_params.tar
radiance_cris-fsr_npp: rad_varbc_params.tar
+ aircraft_temperature: acft_varbc_params.tar
# Local Ensemble DA (LETKF)
# -------------------------
The additional changes are
- define
atmosphere_obsbiasout_acft_suffixfor the output aircraft bias correction file - define input and output suffixes for the aircraft bias correction covariance files. If JEDI can read and write aircraft bias correction coefficients and covariances from the same file, these additions are not necessary.
- add
aircraft_temperatureto point at the tarball containing aircraft bias correction files. For my tests the tarball contains two files:atmosphere_obsbiasin_acftandatmosphere_obsbiascovin_acft. If we only need a single files for both quantities, we don't need a tarball. However, in this case we will need to modify the python scripting which stages the bias correction data. It assumes it's working with tarballs.
Collaborator
Author
There was a problem hiding this comment.
- This makes sense.
- There are no acft covariance files but the code still requires there be a covariance file, so couldn't we just re-use the
atmosphere_obsbiasin_acftandatmosphere_obsbiasout_acft? - Because we are merging all three aircraft yamls into one, we do not need
aircraft_temperatureanymore. They could just be called atmosphere. However if the point is to mention that it is specifically temperature correction, then sure we can keep "aircraft_temperature"
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Updates jcb-base.yaml.j2
Companion PRs
Should be added before running the workflow/gdasapp and before the jcb-gdas PR#228 and likely at the same time as UFO#3951
Issues
Fixes issue #2035