Open sfinkens opened 1 year ago
The "meirink-2023" can now be used from satpy. However there are new IR calibration done by EUMETSAT. Not sure how these can be combined.
I think currently you should be able to do this
eum_coefs = {
'IR_108': {'gain': 1.234, 'offset': 0.123},
# etc
}
scene = satpy.Scene(
filenames,
reader='seviri_l1b_...',
reader_kwargs={
'ext_calib_coefs': eum_coefs,
'calib_mode': 'meirink-2023'
}
)
During the last PCW I prepared for channel-specific coefficients, see https://satpy.readthedocs.io/en/stable/api/satpy.readers.utils.html#satpy.readers.utils.CalibrationCoefficientPicker. But I haven't adapted the SEVIRI readers, yet.
Use Satpy for SEVIRI calibration, once https://github.com/pytroll/satpy/issues/2571 has been merged.