Skip to content
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

Fix paths in prepocnobs task #2459

Merged
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4f1e2a8
fix path
ShastriPaturi Feb 28, 2024
697f6f4
Merge branch 'NOAA-EMC:develop' into bugfix/jjob_prepoceanobs
ShastriPaturi Feb 29, 2024
4560ae4
Merge branch 'NOAA-EMC:develop' into bugfix/jjob_prepoceanobs
ShastriPaturi Feb 29, 2024
cb8e225
Merge branch 'NOAA-EMC:develop' into bugfix/jjob_prepoceanobs
ShastriPaturi Mar 1, 2024
5249f23
Merge branch 'NOAA-EMC:develop' into bugfix/jjob_prepoceanobs
ShastriPaturi Mar 1, 2024
9f8d5a2
Merge branch 'NOAA-EMC:develop' into bugfix/jjob_prepoceanobs
ShastriPaturi Mar 4, 2024
b4cfb2e
Merge branch 'NOAA-EMC:develop' into bugfix/jjob_prepoceanobs
ShastriPaturi Mar 4, 2024
30b2294
insitu BUFR2IODA related
ShastriPaturi Mar 4, 2024
81015c5
path to bufr2ioda
ShastriPaturi Mar 19, 2024
4426a05
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 3, 2024
e43ce9a
redo
AndrewEichmann-NOAA Apr 4, 2024
be2ac41
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 4, 2024
38d4bcb
Update parm/config/gfs/config.prepoceanobs
AndrewEichmann-NOAA Apr 5, 2024
168f5eb
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 5, 2024
084c151
tweaks from review
AndrewEichmann-NOAA Apr 5, 2024
13c081e
path wrangling
AndrewEichmann-NOAA Apr 5, 2024
670bee6
Update parm/config/gfs/config.prepoceanobs
AndrewEichmann-NOAA Apr 5, 2024
d40eeca
more tweaks
AndrewEichmann-NOAA Apr 5, 2024
3d07635
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 8, 2024
2df0dd3
added bufr2ioda links to gitignore
AndrewEichmann-NOAA Apr 8, 2024
d8e0c35
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 9, 2024
3d7758d
simplified env var assignments
AndrewEichmann-NOAA Apr 9, 2024
cd1dc55
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 9, 2024
bef3316
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 10, 2024
56c1dfa
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 12, 2024
f7649c2
Merge branch 'develop' into bugfix/jjob_prepoceanobs
AndrewEichmann-NOAA Apr 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions parm/config/gfs/config.prepoceanobs
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,20 @@ echo "BEGIN: config.prepoceanobs"
export OCNOBS2IODAEXEC=${HOMEgfs}/sorc/gdas.cd/build/bin/gdas_obsprovider2ioda.x

export SOCA_INPUT_FIX_DIR=@SOCA_INPUT_FIX_DIR@
export OBS_YAML_DIR=${HOMEgfs}/sorc/gdas.cd/parm/soca/obs/config

export OBS_YAML_DIR=${OBS_YAML_DIR:-${PARMgfs}/gdas/soca/obs/config}
AndrewEichmann-NOAA marked this conversation as resolved.
Show resolved Hide resolved
export OBSPREP_YAML=@OBSPREP_YAML@
export OBS_LIST=@SOCA_OBS_LIST@
[[ -n "${OBS_LIST}" ]] || export OBS_LIST=${HOMEgfs}/sorc/gdas.cd/parm/soca/obs/obs_list.yaml
export OBS_LIST=${OBS_LIST:-${PARMgfs}/gdas/soca/obs/obs_list.yaml}
AndrewEichmann-NOAA marked this conversation as resolved.
Show resolved Hide resolved
export OBS_YAML=${OBS_LIST}

# ocean analysis needs own dmpdir until standard dmpdir has full ocean obs
export DMPDIR=@DMPDIR@

# For BUFR2IODA json and python scripts
export JSON_TMPL_DIR=${JSON_TMPL_DIR:-"${PARMgfs}/gdas/ioda/bufr2ioda"}
export BUFR2IODA_PY_DIR=${BUFR2IODA_PY_DIR:-"${USHgfs}"}
AndrewEichmann-NOAA marked this conversation as resolved.
Show resolved Hide resolved

# Get task specific resources
. "${EXPDIR}/config.resources" prepoceanobs
echo "END: config.prepoceanobs"
2 changes: 2 additions & 0 deletions sorc/link_workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ if [[ -d "${HOMEgfs}/sorc/gdas.cd/build" ]]; then
cd "${HOMEgfs}/ush" || exit 1
${LINK_OR_COPY} "${HOMEgfs}/sorc/gdas.cd/ush/ufsda" .
${LINK_OR_COPY} "${HOMEgfs}/sorc/gdas.cd/ush/jediinc2fv3.py" .
${LINK_OR_COPY} "${HOMEgfs}/sorc/gdas.cd/ush/ioda/bufr2ioda/gen_bufr2ioda_json.py" .
${LINK_OR_COPY} "${HOMEgfs}/sorc/gdas.cd/ush/ioda/bufr2ioda/gen_bufr2ioda_yaml.py" .
${LINK_OR_COPY} "${HOMEgfs}/sorc/gdas.cd/ush/ioda/bufr2ioda/run_bufr2ioda.py" .
${LINK_OR_COPY} "${HOMEgfs}/sorc/gdas.cd/build/bin/imsfv3_scf2ioda.py" .
${LINK_OR_COPY} "${HOMEgfs}/sorc/gdas.cd/scripts/exglobal_prep_ocean_obs.py" .
Expand Down
Loading