You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version cannot process Metop-C files.
I have a hot fix, but maybe let us discuss the options.
The problem is that there is no entry in the dictionary metadata.TIME_COVERAGE and therefore the program raises a KeyError.
Adding the Metop-C data would fix this issue, but I would suggest to change the following lines:
in favour of using TIME_COVERAGE.get(..., (None, None)), and add the time_cov_start metadata optionally (same as time_cov_end). The missing time_cov_start should raise a warning, but it should not be the show stopper.
What do you think?
The text was updated successfully, but these errors were encountered:
The current version cannot process Metop-C files.
I have a hot fix, but maybe let us discuss the options.
The problem is that there is no entry in the dictionary
metadata.TIME_COVERAGE
and therefore the program raises aKeyError
.Adding the Metop-C data would fix this issue, but I would suggest to change the following lines:
pygac-fdr/pygac_fdr/writer.py
Lines 351 to 353 in a270843
in favour of using
TIME_COVERAGE.get(..., (None, None))
, and add thetime_cov_start
metadata optionally (same astime_cov_end
). The missingtime_cov_start
should raise a warning, but it should not be the show stopper.What do you think?
The text was updated successfully, but these errors were encountered: