From 22ffea8aa86c61fed3c828febcbda375534896a1 Mon Sep 17 00:00:00 2001 From: Christina Holt Date: Thu, 2 Apr 2026 19:27:45 +0000 Subject: [PATCH 1/4] Don't try to plot ceilexp. --- image_lists/hrrr_subset.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/image_lists/hrrr_subset.yml b/image_lists/hrrr_subset.yml index 517c4d27..81f15f4c 100644 --- a/image_lists/hrrr_subset.yml +++ b/image_lists/hrrr_subset.yml @@ -24,8 +24,6 @@ hourly: - sfc ceil: - ua - ceilexp: - - ua ceilexp2: - ua cin: From f82da86dc23aece55869c81a57b7fac782ab1bf4 Mon Sep 17 00:00:00 2001 From: Christina Holt Date: Thu, 2 Apr 2026 19:28:13 +0000 Subject: [PATCH 2/4] Don't try to plot ceilexp for HRRR. --- adb_graphics/datahandler/gribdata.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/adb_graphics/datahandler/gribdata.py b/adb_graphics/datahandler/gribdata.py index af24425c..9658eb02 100644 --- a/adb_graphics/datahandler/gribdata.py +++ b/adb_graphics/datahandler/gribdata.py @@ -359,9 +359,10 @@ def ncl_name(self, spec: dict): name = name.get(self.filetype) if name is None: - print(f"Cannot find ncl_name for: ") + import logging + logging.info(f"Cannot find ncl_name for: ") for key, value in spec.items(): - print(f'{key}: {value}') + logging.info(f'{key}: {value}') raise KeyError # The level_type for the entire atmosphere could be L10 or L200. Thanks From 0e3660230622c8569a829553a6263128a768a1d9 Mon Sep 17 00:00:00 2001 From: Christina Holt Date: Thu, 2 Apr 2026 19:46:39 +0000 Subject: [PATCH 3/4] Roll back change to this file. Added by mistake. --- adb_graphics/datahandler/gribdata.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/adb_graphics/datahandler/gribdata.py b/adb_graphics/datahandler/gribdata.py index 9658eb02..af24425c 100644 --- a/adb_graphics/datahandler/gribdata.py +++ b/adb_graphics/datahandler/gribdata.py @@ -359,10 +359,9 @@ def ncl_name(self, spec: dict): name = name.get(self.filetype) if name is None: - import logging - logging.info(f"Cannot find ncl_name for: ") + print(f"Cannot find ncl_name for: ") for key, value in spec.items(): - logging.info(f'{key}: {value}') + print(f'{key}: {value}') raise KeyError # The level_type for the entire atmosphere could be L10 or L200. Thanks From d1d926736395c3e27aa234594ca75e84490679d8 Mon Sep 17 00:00:00 2001 From: Christina Holt Date: Mon, 13 Apr 2026 15:02:44 +0000 Subject: [PATCH 4/4] Plotting ceilexp for HRRR --- adb_graphics/default_specs.yml | 5 ++--- image_lists/hrrr_subset.yml | 2 ++ pre.sh | 13 ++++++++++--- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/adb_graphics/default_specs.yml b/adb_graphics/default_specs.yml index 680a5216..b32ce047 100644 --- a/adb_graphics/default_specs.yml +++ b/adb_graphics/default_specs.yml @@ -410,13 +410,12 @@ ceil: # Ceiling ceilexp: # Ceiling - experimental ua: <<: *ceil - ncl_name: - regional_mpas: CEIL_P0_L215_{grid} + ncl_name: CEIL_P0_L215_{grid} title: Ceiling (exp) ceilexp2: # Ceiling - experimental no.2 ua: <<: *ceil - ncl_name: + ncl_name: # Note that the "HGT_P0_L2_{grid}" ncl_names in RAPv5/HRRRv4 (below) # seemingly correspond to cloud-base height. This is intentional; i.e., # the exp2 ceiling field was indeed implemented into operations by being diff --git a/image_lists/hrrr_subset.yml b/image_lists/hrrr_subset.yml index 81f15f4c..517c4d27 100644 --- a/image_lists/hrrr_subset.yml +++ b/image_lists/hrrr_subset.yml @@ -24,6 +24,8 @@ hourly: - sfc ceil: - ua + ceilexp: + - ua ceilexp2: - ua cin: diff --git a/pre.sh b/pre.sh index aac7f804..48db3a1e 100644 --- a/pre.sh +++ b/pre.sh @@ -2,8 +2,15 @@ module purge -module use -a /contrib/miniconda3/modulefiles -module load miniconda3/4.12.0 -conda activate pygraf + +if [[ $(hostname) == u* ]] ; then + module use -a /contrib/miniconda/modulefiles + module load miniconda/25.3.1 + conda activate pygraf_rap +else + module use -a /contrib/miniconda3/modulefiles + module load miniconda3/4.12.0 + conda activate pygraf +fi module list