From e30b24fd5a6d53810b4c8b06ed194a3097dcf7eb Mon Sep 17 00:00:00 2001 From: mstrumik <142874888+mstrumik@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:37:02 +0200 Subject: [PATCH] Update glows_l1b_data.py, replace glows_time_offset with imap_time_offset glows_time_offset should be replaced here with imap_time_offset here. Both IMAP and GLOWS clock readings are included in GLOWS histogram packets, but the two clocks are separate instances and their readings should not be mixed. --- imap_processing/glows/l1b/glows_l1b_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imap_processing/glows/l1b/glows_l1b_data.py b/imap_processing/glows/l1b/glows_l1b_data.py index 6354673f2..e24022b38 100644 --- a/imap_processing/glows/l1b/glows_l1b_data.py +++ b/imap_processing/glows/l1b/glows_l1b_data.py @@ -899,7 +899,7 @@ def update_spice_parameters(self) -> None: data_start_met = self.imap_start_time # use of imap_start_time and glows_time_offset is correct. data_end_met = np.double(self.imap_start_time) + np.double( - self.glows_time_offset + self.imap_time_offset ) data_start_time_et = sct_to_et(met_to_sclkticks(data_start_met)) data_end_time_et = sct_to_et(met_to_sclkticks(data_end_met))