From 02beb650ad8a9d313c12d014c507e98918a65dd7 Mon Sep 17 00:00:00 2001 From: Christopher Montalban Date: Wed, 6 Mar 2024 15:59:56 -0300 Subject: [PATCH] Correct Header keywords --- soar_instruments/goodman/adclass.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/soar_instruments/goodman/adclass.py b/soar_instruments/goodman/adclass.py index 0e34a1b..6003e74 100644 --- a/soar_instruments/goodman/adclass.py +++ b/soar_instruments/goodman/adclass.py @@ -15,7 +15,7 @@ def _tag_instrument(self): @astro_data_tag def _tag_arc(self): - if self.phu.get('OBSTYPE') == 'COMP': + if self.phu.get('OBSTYPE') == 'ARC': return TagSet(['ARC', 'CAL']) @astro_data_tag @@ -25,7 +25,7 @@ def _tag_bias(self): @astro_data_tag def _tag_flat(self): - if self.phu.get('OBSTYPE') == 'FLAT': + if self.phu.get('OBSTYPE') == 'LAMPFLAT': return TagSet(['FLAT', 'CAL']) @astro_data_tag @@ -40,12 +40,12 @@ def _tag_blue(self): @astro_data_tag def _tag_image(self): - if self.phu.get('CAM_ANG') == 0 and self.phu.get('WAVMOD') == 'Imaging': + if self.phu.get('CAM_ANG') == 0 and self.phu.get('WAVMOD') == 'IMAGING': return TagSet(['IMAGE']) @astro_data_tag def _tag_spect(self): - if self.phu.get('CAM_ANG') != 0 and self.phu.get('WAVMOD') != 'Imaging': + if self.phu.get('CAM_ANG') != 0 and self.phu.get('WAVMOD') != 'IMAGING': return TagSet(['SPECT'])