From 0f2b0699719d0368fa96c68eed74aeb58fc37075 Mon Sep 17 00:00:00 2001 From: akrherz Date: Thu, 19 Dec 2024 16:00:42 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20intermediate=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/iemre/init_stage4_daily.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/iemre/init_stage4_daily.py b/scripts/iemre/init_stage4_daily.py index ca8a01260..78528d6c6 100644 --- a/scripts/iemre/init_stage4_daily.py +++ b/scripts/iemre/init_stage4_daily.py @@ -53,7 +53,7 @@ def init_year(ts: datetime, ci: bool) -> Optional[str]: x.bounds = "x_bounds" x[:] = stage4.XAXIS - x_bounds = nc.createVariable("x_bounds", float, ("x", "bnds")) + x_bounds = nc.createVariable("x_bounds", float, ("x", "nv")) x_bounds[:, 0] = stage4.XAXIS - stage4.DX / 2.0 x_bounds[:, 1] = stage4.XAXIS + stage4.DX / 2.0 @@ -65,7 +65,7 @@ def init_year(ts: datetime, ci: bool) -> Optional[str]: y.bounds = "y_bounds" y[:] = stage4.YAXIS - y_bounds = nc.createVariable("y_bounds", float, ("y", "bnds")) + y_bounds = nc.createVariable("y_bounds", float, ("y", "nv")) y_bounds[:, 0] = stage4.YAXIS - stage4.DY / 2.0 y_bounds[:, 1] = stage4.YAXIS + stage4.DY / 2.0