From edc6574b25e0fdb4a58a79f5cf430fa98353a7fe Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Oriol=20Tint=C3=B3=20Prims?= <oriol.tinto@lmu.de>
Date: Fri, 24 Mar 2023 15:35:29 +0100
Subject: [PATCH] Fix bug in prepare_date scripts.

---
 templates/real-from-dwd-ana/prepare_date_local.sh  | 2 +-
 templates/real-from-dwd-ana/prepare_date_remote.sh | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/templates/real-from-dwd-ana/prepare_date_local.sh b/templates/real-from-dwd-ana/prepare_date_local.sh
index 1aa323c..bd06efb 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 8d5ca31..2d6809b 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}")
 
-- 
GitLab