diff --git a/csst_dfs_commons/utils/fits.py b/csst_dfs_commons/utils/fits.py index 2a307595af86cf4598e2fce63eb17afa400f1c6c..2b8fed4234d432cd2b693d0bd4f35c14a73406a5 100644 --- a/csst_dfs_commons/utils/fits.py +++ b/csst_dfs_commons/utils/fits.py @@ -2,13 +2,20 @@ from astropy_healpix import HEALPix from astropy.coordinates import ICRS from astropy import units as u from astropy.coordinates import SkyCoord +from astropy.io import fits -def get_header_value(key: str, header, default_value = None): +def get_header_value(key: str, headers, default_value = None): try: - v = header[key] - if type(v) == str: - return v.strip() - return v + ret_value = None + if not isinstance(headers, list): + headers = [headers] + for header in headers: + if key in header: + ret_value = header[key] + if type(ret_value) == str: + return ret_value.strip() + if ret_value is None: + return default_value except Exception as e: return default_value