diff --git a/templates/real-from-dwd-ana/prepare_date_local.sh b/templates/real-from-dwd-ana/prepare_date_local.sh index 1aa323c5e3826ddd06428279719619f6fc92e066..bd06efb427a795ff430a33eeb953698204b04bae 100644 --- a/templates/real-from-dwd-ana/prepare_date_local.sh +++ b/templates/real-from-dwd-ana/prepare_date_local.sh @@ -1,6 +1,6 @@ #!/bin/bash -l -IS_LOCAL=%SIMULATION.INITIAL_CONDITIONS.MEMBER% +IS_LOCAL=%SIMULATION.INITIAL_CONDITIONS.LOCAL% if [ "${IS_LOCAL}" == "True" ]; then # Get some variables provided by autosubmit. diff --git a/templates/real-from-dwd-ana/prepare_date_remote.sh b/templates/real-from-dwd-ana/prepare_date_remote.sh index 8d5ca31e8dbe34988b10271f076718ab80603eb2..2d6809bbbaac6a5e42c2b421a59ccaa56231d652 100644 --- a/templates/real-from-dwd-ana/prepare_date_remote.sh +++ b/templates/real-from-dwd-ana/prepare_date_remote.sh @@ -1,8 +1,8 @@ #!/bin/bash -l -IS_LOCAL=%SIMULATION.INITIAL_CONDITIONS.MEMBER% +IS_LOCAL=%SIMULATION.INITIAL_CONDITIONS.LOCAL% -if [ "${IS_LOCAL}" == "False" ]; then +if [ "${IS_LOCAL}" == "0" ]; then # Get some variables provided by autosubmit. WORKDIR=%HPCROOTDIR% STARTDATE=%SDATE% @@ -15,7 +15,7 @@ if [ "${IS_LOCAL}" == "False" ]; then AN_SOURCE=$(find ${INITIAL_CONDITIONS_PATH} -name "igaf*00.m${AN_MEMBER}.grb" | sort | tail -n 1) FG_SOURCE=$(find ${INITIAL_CONDITIONS_PATH} -name "igfff00030000.m${AN_MEMBER}.grb" | sort | tail -n 1) - + AN_FILE=$(basename "${AN_SOURCE}") FG_FILE=$(basename "${FG_SOURCE}")