Skip to content
Snippets Groups Projects
Commit 25d49e66 authored by pascal.mouquet_ird.fr's avatar pascal.mouquet_ird.fr
Browse files

wrong raw indices selection correction

parent 886556f3
No related branches found
No related tags found
No related merge requests found
...@@ -131,7 +131,7 @@ class IndicesList(ProductsList): ...@@ -131,7 +131,7 @@ class IndicesList(ProductsList):
def raws(self) -> "ProductsList": def raws(self) -> "ProductsList":
filtered = ProductsList() filtered = ProductsList()
for k, v in self._dict.items(): for k, v in self._dict.items():
if not ("MASK" in k and "QUICKLOOK" in k): if not("MASK" in k) and not("QUICKLOOK" in k):
filtered[k] = {"date": v["date"], "cloud_cover": v["cloud_cover"]} filtered[k] = {"date": v["date"], "cloud_cover": v["cloud_cover"]}
return filtered return filtered
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment