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

Feature/soca remove cdate #1191

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
2 changes: 1 addition & 1 deletion jobs/JGDAS_GLOBAL_OCEAN_ANALYSIS_POST
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "${HOMEgfs}/ush/preamble.sh"
##############################################
# make temp directory
##############################################
export DATA=${DATA:-${DATAROOT}/ocnanal_${CDATE}} # TODO (G): Switch to {cyc} when the downstream code is ready
export DATA=${DATA:-${DATAROOT}/ocnanal_${PDY}${cyc}}
AndrewEichmann-NOAA marked this conversation as resolved.
Show resolved Hide resolved
AndrewEichmann-NOAA marked this conversation as resolved.
Show resolved Hide resolved
mkdir -p "${DATA}"
cd "${DATA}" || (echo "${DATA} does not exist. ABORT!"; exit 1)

Expand Down
3 changes: 1 addition & 2 deletions jobs/JGDAS_GLOBAL_OCEAN_ANALYSIS_PREP
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "${HOMEgfs}/ush/preamble.sh"
##############################################
# make temp directory
##############################################
export DATA=${DATA:-${DATAROOT}/ocnanal_${CDATE}} # TODO (G): Switch to {cyc} when the downstream code is ready
export DATA=${DATA:-${DATAROOT}/ocnanal_${PDY}${cyc}}
AndrewEichmann-NOAA marked this conversation as resolved.
Show resolved Hide resolved
rm -rf "${DATA}" # Ensure starting with a clean DATA
mkdir -p "${DATA}"
cd "${DATA}" || (echo "${DATA} does not exist. ABORT!"; exit 1)
Expand Down Expand Up @@ -50,7 +50,6 @@ status=$?
##############################################
# Set variables used in the script
##############################################
export CDATE=${CDATE:-${PDY}${cyc}}
export CDUMP=${CDUMP:-${RUN:-"gfs"}}
export COMPONENT="ocean"

Expand Down
2 changes: 1 addition & 1 deletion jobs/JGDAS_GLOBAL_OCEAN_ANALYSIS_RUN
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ source "${HOMEgfs}/ush/preamble.sh"
##############################################
# make temp directory
##############################################
export DATA=${DATA:-${DATAROOT}/ocnanal_${CDATE}} # TODO (G): Switch to {cyc} when the downstream code is ready
export DATA=${DATA:-${DATAROOT}/ocnanal_${PDY}${cyc}} # TODO (G): Switch to {cyc} when the downstream code is ready
AndrewEichmann-NOAA marked this conversation as resolved.
Show resolved Hide resolved
mkdir -p "${DATA}"
cd "${DATA}" || (echo "${DATA} does not exist. ABORT!"; exit 1)

Expand Down