From ba3338fa80e174fafd4760aca140acc19bef28db Mon Sep 17 00:00:00 2001 From: Jiarui Dong Date: Wed, 17 Jul 2024 15:50:11 -0400 Subject: [PATCH 1/4] Change to process IMS snow from the 18z to the 00z cycle. --- scripts/exglobal_prep_snow_obs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/exglobal_prep_snow_obs.py b/scripts/exglobal_prep_snow_obs.py index d4998a7d84..0f6398ba9f 100755 --- a/scripts/exglobal_prep_snow_obs.py +++ b/scripts/exglobal_prep_snow_obs.py @@ -21,5 +21,6 @@ # Instantiate the snow prepare task SnowAnl = SnowAnalysis(config) SnowAnl.prepare_GTS() - if f"{ SnowAnl.task_config.cyc }" == '18': + SnowAnl.task_config.cyc = f'{SnowAnl.task_config.cyc:02d}' + if f"{ SnowAnl.task_config.cyc }" == '00': SnowAnl.prepare_IMS() From 15fb45e766dc5da0ae4dcd07b2ba8a87f7ce3b60 Mon Sep 17 00:00:00 2001 From: Jiarui Dong Date: Thu, 18 Jul 2024 17:28:36 -0400 Subject: [PATCH 2/4] Include the changes from GDASApp. --- sorc/gdas.cd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorc/gdas.cd b/sorc/gdas.cd index e3644a98c3..0558155c91 160000 --- a/sorc/gdas.cd +++ b/sorc/gdas.cd @@ -1 +1 @@ -Subproject commit e3644a98c362d7321f9e3081a4e55947885ed2bf +Subproject commit 0558155c914a23822efd892ac2be20800813e80e From 7773f81bef698a455977975ef09ddaad5b3747ca Mon Sep 17 00:00:00 2001 From: Jiarui Dong Date: Fri, 19 Jul 2024 09:57:21 -0400 Subject: [PATCH 3/4] Address reviewer's comments. --- scripts/exglobal_prep_snow_obs.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/exglobal_prep_snow_obs.py b/scripts/exglobal_prep_snow_obs.py index 0f6398ba9f..a6a9070151 100755 --- a/scripts/exglobal_prep_snow_obs.py +++ b/scripts/exglobal_prep_snow_obs.py @@ -21,6 +21,5 @@ # Instantiate the snow prepare task SnowAnl = SnowAnalysis(config) SnowAnl.prepare_GTS() - SnowAnl.task_config.cyc = f'{SnowAnl.task_config.cyc:02d}' - if f"{ SnowAnl.task_config.cyc }" == '00': + if SnowAnl.task_config.cyc == 0: SnowAnl.prepare_IMS() From 152e3a854e7c262ac6af9934d4478e6d9164e71f Mon Sep 17 00:00:00 2001 From: Jiarui Dong Date: Fri, 19 Jul 2024 10:16:02 -0400 Subject: [PATCH 4/4] Update the changes from GDASApp. --- sorc/gdas.cd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorc/gdas.cd b/sorc/gdas.cd index 0558155c91..c5ead8538f 160000 --- a/sorc/gdas.cd +++ b/sorc/gdas.cd @@ -1 +1 @@ -Subproject commit 0558155c914a23822efd892ac2be20800813e80e +Subproject commit c5ead8538f0002dfb0145c34311722db20ab0e93