From 5d4af9f492d14ce53b96514273c5ca3a57b04e07 Mon Sep 17 00:00:00 2001 From: Angela Zegarelli <159175351+azegarelli@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:12:42 +0100 Subject: [PATCH 1/2] Rename I3TYPE to ALERT-TYPE in plotting_tools.py --- skyreader/plot/plotting_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyreader/plot/plotting_tools.py b/skyreader/plot/plotting_tools.py index 3be4ae3..8eac561 100644 --- a/skyreader/plot/plotting_tools.py +++ b/skyreader/plot/plotting_tools.py @@ -37,7 +37,7 @@ def format_fits_header( ('SENDER', 'IceCube Collaboration'), ('DATE-OBS', t.isot, 'UTC date of the observation'), ('MJD-OBS', mjd, 'modified Julian date of the observation'), - ('I3TYPE', f'{event_type}','Alert Type'), + ('ALERT-TYPE', f'{event_type}','Alert Type'), ('RA', np.round(ra,2),'Degree'), ('DEC', np.round(dec,2),'Degree'), ('RA_ERR_PLUS_50', np.round(uncertainties[0][0][1],2), From 5654fa6bb509eeb4f1fd36ebf4280dd04d440045 Mon Sep 17 00:00:00 2001 From: Angela Zegarelli <159175351+azegarelli@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:36:11 +0100 Subject: [PATCH 2/2] Update plotting_tools.py --- skyreader/plot/plotting_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyreader/plot/plotting_tools.py b/skyreader/plot/plotting_tools.py index 8eac561..bbd5c41 100644 --- a/skyreader/plot/plotting_tools.py +++ b/skyreader/plot/plotting_tools.py @@ -37,7 +37,7 @@ def format_fits_header( ('SENDER', 'IceCube Collaboration'), ('DATE-OBS', t.isot, 'UTC date of the observation'), ('MJD-OBS', mjd, 'modified Julian date of the observation'), - ('ALERT-TYPE', f'{event_type}','Alert Type'), + ('EVENT-TYPE', f'{event_type}','Event Type'), ('RA', np.round(ra,2),'Degree'), ('DEC', np.round(dec,2),'Degree'), ('RA_ERR_PLUS_50', np.round(uncertainties[0][0][1],2),