1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2019-2022 Pytroll developers
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Read the preliminary MetImage relative spectral response functions.
Data from the NWPSAF. These are simulated function.
"""
import logging
import os
import numpy as np
from pyspectral.raw_reader import InstrumentRSR
from pyspectral.utils import get_central_wave
LOG = logging.getLogger(__name__)
METIMAGE_BAND_NAMES = ['ch1', 'ch2', 'ch3', 'ch4', 'ch5',
'ch6', 'ch7', 'ch8', 'ch9', 'ch10',
'ch11', 'ch12', 'ch13', 'ch14', 'ch15',
'ch16', 'ch17', 'ch18', 'ch19', 'ch20']
class MetImageRSR(InstrumentRSR):
"""Container for the EPS-SG MetImage RSR data."""
def __init__(self, bandname, platform_name):
"""Initialize the class."""
super(MetImageRSR, self).__init__(
bandname, platform_name, METIMAGE_BAND_NAMES)
self.instrument = 'metimage'
self._get_options_from_config()
self._get_bandfilenames()
LOG.debug("Filenames: %s", str(self.filenames))
if self.filenames[bandname] and os.path.exists(self.filenames[bandname]):
self.requested_band_filename = self.filenames[bandname]
self._load()
else:
LOG.warning("Couldn't find an existing file for this band: %s",
str(self.bandname))
# To be compatible with VIIRS....
self.filename = self.requested_band_filename
self.unit = 'micrometer'
self.wavespace = 'wavelength'
def _load(self, scale=0.001):
"""Load the MetImage RSR data for the band requested."""
data = np.genfromtxt(self.requested_band_filename,
unpack=True,
names=['wavelength',
'response'],
skip_header=0,
delimiter=',')
# Data are in nanometer and need to transform to microns:
wavelength = data['wavelength'] * scale
response = data['response']
# The real MetImage has 24 detectors. However, for now we store the
# single rsr as 'detector-1', indicating that there will be multiple
# detectors in the future:
detectors = {}
detectors['det-1'] = {'wavelength': wavelength, 'response': response}
self.rsr = detectors
def generate_metimage_file(platform_name):
"""Retrieve original RSR data and convert to internal hdf5 format."""
import h5py
bandnames = METIMAGE_BAND_NAMES
instr = MetImageRSR(bandnames[0], platform_name)
instr_name = instr.instrument.replace('/', '')
filename = os.path.join(instr.output_dir,
"rsr_{0}_{1}.h5".format(instr_name,
platform_name))
with h5py.File(filename, "w") as h5f:
h5f.attrs['description'] = ('Relative Spectral Responses for ' +
instr.instrument.upper())
h5f.attrs['platform_name'] = platform_name
h5f.attrs['band_names'] = bandnames
for chname in bandnames:
metimage = MetImageRSR(chname, platform_name)
grp = h5f.create_group(chname)
grp.attrs['number_of_detectors'] = len(metimage.rsr.keys())
# Loop over each detector to check if the sampling wavelengths are
# identical:
det_names = list(metimage.rsr.keys())
wvl = metimage.rsr[det_names[0]]['wavelength']
wvl, idx = np.unique(wvl, return_index=True)
wvl_is_constant = True
for det in det_names[1:]:
det_wvl = np.unique(metimage.rsr[det]['wavelength'])
if not np.alltrue(wvl == det_wvl):
LOG.warning(
"Wavelngth arrays are not the same among detectors!")
wvl_is_constant = False
if wvl_is_constant:
arr = wvl
dset = grp.create_dataset('wavelength', arr.shape, dtype='f')
dset.attrs['unit'] = 'm'
dset.attrs['scale'] = 1e-06
dset[...] = arr
# Loop over each detector:
for det in metimage.rsr:
det_grp = grp.create_group(det)
wvl = metimage.rsr[det]['wavelength'][
~np.isnan(metimage.rsr[det]['wavelength'])]
rsp = metimage.rsr[det]['response'][
~np.isnan(metimage.rsr[det]['wavelength'])]
wvl, idx = np.unique(wvl, return_index=True)
rsp = np.take(rsp, idx)
LOG.debug("wvl.shape: %s", str(wvl.shape))
det_grp.attrs[
'central_wavelength'] = get_central_wave(wvl, rsp)
if not wvl_is_constant:
arr = wvl
dset = det_grp.create_dataset(
'wavelength', arr.shape, dtype='f')
dset.attrs['unit'] = 'm'
dset.attrs['scale'] = 1e-06
dset[...] = arr
dset = det_grp.create_dataset('response', rsp.shape, dtype='f')
dset[...] = rsp
if __name__ == "__main__":
for platform_name in ["Metop-SG-A1", ]:
generate_metimage_file(platform_name)
|