From 5cf1bd61cbd471c2efbfe5b497be74a7955eb8ef Mon Sep 17 00:00:00 2001 From: Alexander Mahura Date: Mon, 20 Nov 2023 18:15:51 +0100 Subject: [PATCH 1/2] Update run_obsall.py --- run_obsall.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/run_obsall.py b/run_obsall.py index a5b9ae02f..82616732e 100644 --- a/run_obsall.py +++ b/run_obsall.py @@ -14,14 +14,18 @@ print('**********************************************************') command_synop_run = "cd SYNOP; pwd; ./main_synop.sh; exit 0" subprocess.run(command_synop_run, shell=True, check=True, executable="/bin/bash") -# IN DEVELOPMENT +# IN IMPLEMENTATION # --- Processing radiosounding observations (TEMP) -#command_radsound_run = "cd RADSOUND; pwd; ./main_radsound.sh; exit 0" -#subprocess.run(command_radsound_run, shell=True, executable="/bin/bash") +print('**********************************************************') +print('DestinE Climate Digital Twin - OBSALL Apps') +print('--- Processing radiosounding-based observations (TEMP)') +print('**********************************************************') +command_radsound_run = "cd RADSOUND; pwd; ./main_radsound.sh; exit 0" +subprocess.run(command_radsound_run, shell=True, check=True, executable="/bin/bash") # IN DEVELOPMENT # Processing satellite observations (AMSU-A) #command_satellite_run = "cd SATELLITE; pwd; ./main_satellite.sh; exit 0" -#subprocess.run(command_satellite_run, shell=True, executable="/bin/bash") +#subprocess.run(command_satellite_run, shell=True, check=True, executable="/bin/bash") sys.exit(0) -- GitLab From 2de718537e610fc31cbbec17993e507cd534f7fa Mon Sep 17 00:00:00 2001 From: Alexander Mahura Date: Mon, 20 Nov 2023 18:18:40 +0100 Subject: [PATCH 2/2] Update main_radsound.sh --- RADSOUND/main_radsound.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RADSOUND/main_radsound.sh b/RADSOUND/main_radsound.sh index 1b43a8c21..31234ea3c 100755 --- a/RADSOUND/main_radsound.sh +++ b/RADSOUND/main_radsound.sh @@ -98,7 +98,7 @@ echo " SCRIPT --- gsv_radsound_mod_data.sh" echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" ####### -#######./gsv_radsound_mod_data.sh +./gsv_radsound_mod_data.sh echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" -- GitLab