Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fengyun and geo-kompsat-2b sensor support #225

Merged
merged 4 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG_RSR_DATA.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ Changelog for the Relative Spectral Response data
=================================================


Version <v1.3.0> (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 <v1.2.4> (Sat Oct 21 12:25:00 PM CEST 2023)
-------------------------------------------
Expand Down
13 changes: 7 additions & 6 deletions pyspectral/utils.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -93,20 +94,20 @@
'NOAA-20': 'viirs',
'NOAA-21': 'viirs',
'Suomi-NPP': 'viirs',
'FY-3A': ['virr', "mersi-1"],
'FY-3B': ['virr', "mersi-1"],
'FY-3C': ['virr', "mersi-1"],
'FY-3A': ['virr', 'mersi-1'],
'FY-3B': ['virr', 'mersi-1'],
'FY-3C': ['virr', 'mersi-1'],
'DSCOVR': 'epic'}


INSTRUMENT_TRANSLATION_DASH2SLASH = {'avhrr-1': 'avhrr/1',
'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',
Expand Down