Hello,
The seviri RSR are extracted at https://github.com/pytroll/pyspectral/blob/main/rsr_convert_scripts/seviri_rsr.py#L115
The call to sheet.col_values(1, start_rowx=13, end_rowx=113)) is 0-indexed (look at https://github.com/python-excel/xlrd/blob/master/xlrd/sheet.py#L567 ). -> Line 13 in the spreadsheet view is missing in the data file.
For SEVIRI on Meteosat-11, band IR7.3, the first wavelength is 6.37 whereas in the spreadsheet it is 6.35.
Could the SEVIRI parsing code be modified to use one extra line?
I did a test for this case and the conversion program happily adds this first line. If this is "accepted", I can make a PR of course.
Hello,
The seviri RSR are extracted at https://github.com/pytroll/pyspectral/blob/main/rsr_convert_scripts/seviri_rsr.py#L115
The call to
sheet.col_values(1, start_rowx=13, end_rowx=113))is 0-indexed (look at https://github.com/python-excel/xlrd/blob/master/xlrd/sheet.py#L567 ). -> Line 13 in the spreadsheet view is missing in the data file.For SEVIRI on Meteosat-11, band
IR7.3, the first wavelength is 6.37 whereas in the spreadsheet it is 6.35.Could the SEVIRI parsing code be modified to use one extra line?
I did a test for this case and the conversion program happily adds this first line. If this is "accepted", I can make a PR of course.