From 110de20894b26ce7571e66b7a02452ec584db61d Mon Sep 17 00:00:00 2001 From: "Adam.Dybbroe" Date: Fri, 3 May 2024 16:35:48 +0200 Subject: [PATCH 1/2] Update for latest RSR files on zenodo - latest addition of chinese and korean sensors Signed-off-by: Adam.Dybbroe --- CHANGELOG_RSR_DATA.rst | 8 ++++++++ pyspectral/utils.py | 11 ++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG_RSR_DATA.rst b/CHANGELOG_RSR_DATA.rst index 0c1eadb..fab97f5 100644 --- a/CHANGELOG_RSR_DATA.rst +++ b/CHANGELOG_RSR_DATA.rst @@ -2,6 +2,14 @@ Changelog for the Relative Spectral Response data ================================================= +Version (Fri May 3 04:11:43 PM CEST 2024) +------------------------------------------- + + * Added SRFs (RSRs) for the Mersi-1 sensor onboard FY-3A/B/C + * Added SRFs for the Mersi-RM sensor onboard FY-3G + * Added SRFs for the GHI (Geostationary High-speed Imager) sensor onboard FY-4B + * Added SRFs for GOCI-II (Geostationary Ocean Color Imager: Follow-on) sensor onboard GK-2B (GEO-KOMPSAT-2B) + Version (Sat Oct 21 12:25:00 PM CEST 2023) ------------------------------------------- diff --git a/pyspectral/utils.py b/pyspectral/utils.py index e9c3f2e..c94437b 100644 --- a/pyspectral/utils.py +++ b/pyspectral/utils.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2014-2023 Pytroll developers +# Copyright (c) 2014-2024 Pytroll developers # # # This program is free software: you can redistribute it and/or modify @@ -93,8 +93,9 @@ 'NOAA-20': 'viirs', 'NOAA-21': 'viirs', 'Suomi-NPP': 'viirs', - 'FY-3B': 'virr', - 'FY-3C': 'virr', + 'FY-3A': ['virr', 'mersi-1'], + 'FY-3B': ['virr', 'mersi-1'], + 'FY-3C': ['virr', 'mersi-1'], 'DSCOVR': 'epic'} @@ -102,10 +103,10 @@ 'avhrr-2': 'avhrr/2', 'avhrr-3': 'avhrr/3'} -HTTP_PYSPECTRAL_RSR = "https://zenodo.org/records/10029746/files/pyspectral_rsr_data.tgz" +HTTP_PYSPECTRAL_RSR = "https://zenodo.org/records/11110033/files/pyspectral_rsr_data.tgz" RSR_DATA_VERSION_FILENAME = "PYSPECTRAL_RSR_VERSION" -RSR_DATA_VERSION = "v1.2.4" +RSR_DATA_VERSION = "v1.3.0" ATM_CORRECTION_LUT_VERSION = {} ATM_CORRECTION_LUT_VERSION['antarctic_aerosol'] = {'version': 'v1.0.1', From dfea5030948928c846b5a6244ca06bbefbd553af Mon Sep 17 00:00:00 2001 From: "Adam.Dybbroe" Date: Fri, 3 May 2024 16:42:53 +0200 Subject: [PATCH 2/2] Add goci-2 sensor on GEO-KOMPSAT-2B to the list of sensors and sats Signed-off-by: Adam.Dybbroe --- pyspectral/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyspectral/utils.py b/pyspectral/utils.py index c94437b..425db6d 100644 --- a/pyspectral/utils.py +++ b/pyspectral/utils.py @@ -54,6 +54,7 @@ 'Himawari-8': 'ahi', 'Himawari-9': 'ahi', 'GEO-KOMPSAT-2A': 'ami', + 'GEO-KOMPSAT-2B': 'goci-2', 'NOAA-10': 'avhrr/1', 'NOAA-6': 'avhrr/1', 'NOAA-8': 'avhrr/1',