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 global time_coverage_start/end attributes are looked up in metadata.TIME_COVERAGE. If a platform is missing in that dictionary, pygac-fdr-run fails with a KeyError. This should not be a show stopper. Instead these attributes should be omitted in that case. Proposed solution: Replace
The global
time_coverage_start/end
attributes are looked up inmetadata.TIME_COVERAGE
. If a platform is missing in that dictionary,pygac-fdr-run
fails with a KeyError. This should not be a show stopper. Instead these attributes should be omitted in that case. Proposed solution: Replacepygac-fdr/pygac_fdr/writer.py
Lines 351 to 353 in a270843
with
TIME_COVERAGE.get(..., (None, None))
, and add the attributes only if notNone
. Else a warning would be useful.The text was updated successfully, but these errors were encountered: