diff --git a/FIGSEXAMPLES/destine_obs_radsound_figs.jpg b/FIGSEXAMPLES/destine_obs_radsound_figs.jpg index f13b27ff0be425022d6287be5fa87e8908c5e170..b6330ad151e98685c03b424610c796c13e2e0652 100644 Binary files a/FIGSEXAMPLES/destine_obs_radsound_figs.jpg and b/FIGSEXAMPLES/destine_obs_radsound_figs.jpg differ diff --git a/FIGSEXAMPLES/destine_obs_synop_figs.jpg b/FIGSEXAMPLES/destine_obs_synop_figs.jpg index 2e8c86487d1bd24b0ea77c307eb4a7e3aa5831ec..7db4166b71c12c4ea9a3f2aaa58098707ae3372c 100644 Binary files a/FIGSEXAMPLES/destine_obs_synop_figs.jpg and b/FIGSEXAMPLES/destine_obs_synop_figs.jpg differ diff --git a/run_obsall.py b/run_obsall.py index a5b9ae02f463546c4615fa3147280560c89601a7..fad51fd3a9b03761e1c66c05f0f1b050806a3c4d 100644 --- a/run_obsall.py +++ b/run_obsall.py @@ -1,7 +1,7 @@ #!/scratch/project_465000454/devaraju/SW/LUMI-23.03/C/python-climatedt/bin/python # OBSALL Apps (3 parts: SYNOP, TEMP, AMSU-A observations) -# Import required libraries +# Import required libraries ... import sys import subprocess @@ -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)