Skip to content

Commit

Permalink
Merge pull request #225 from adybbroe/add-fengyun-and-gcom-sensor-sup…
Browse files Browse the repository at this point in the history
…port

Add fengyun and geo-kompsat-2b sensor support
  • Loading branch information
adybbroe committed May 7, 2024
2 parents 6b8b718 + 5853de5 commit 219ead5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
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

0 comments on commit 219ead5

Please sign in to comment.