From e144f74ca78b5249e052418e7bbccbe86eb34010 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Mon, 21 Aug 2023 08:57:29 -0500 Subject: [PATCH] Change MERSI-LL defaults to not include 1 (DNB) and histogram_dnb --- polar2grid/readers/mersi_ll_l1b.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/polar2grid/readers/mersi_ll_l1b.py b/polar2grid/readers/mersi_ll_l1b.py index 285a53b7..dc73d8e4 100644 --- a/polar2grid/readers/mersi_ll_l1b.py +++ b/polar2grid/readers/mersi_ll_l1b.py @@ -74,7 +74,8 @@ ] ALL_COMPS = ["histogram_dnb", "adaptive_dnb"] -DEFAULT_PRODUCTS = ALL_BANDS + ALL_COMPS +# band 1 (DNB) is not useful by itself, histogram_dnb is not a default +DEFAULT_PRODUCTS = ALL_BANDS[1:] + ALL_COMPS[1:] PRODUCT_ALIASES = {}