From 6007421e403f9af6b79df286e2461dfe4fa2d98e Mon Sep 17 00:00:00 2001 From: Marcus Hughes Date: Wed, 11 Dec 2024 22:34:09 -0700 Subject: [PATCH] use isoformat for date-obs --- punchbowl/level3/f_corona_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/punchbowl/level3/f_corona_model.py b/punchbowl/level3/f_corona_model.py index 6453b7fb..0768847d 100644 --- a/punchbowl/level3/f_corona_model.py +++ b/punchbowl/level3/f_corona_model.py @@ -189,7 +189,7 @@ def construct_polarized_f_corona_model(filenames: list[str], smooth_level: float p_model_fcorona = fill_nans_with_interpolation(p_model_fcorona) meta = NormalizedMetadata.load_template("PFM", "3") - meta["DATE-OBS"] = str(reference_time) + meta["DATE-OBS"] = reference_time.isoformat() output_cube = NDCube(data=np.stack([m_model_fcorona, z_model_fcorona, p_model_fcorona], axis=0),