We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea943b6 commit ebc037eCopy full SHA for ebc037e
satpy/dataset/dataid.py
@@ -379,16 +379,6 @@ def filter_dataids(self, dataid_container):
379
keys = list(filter(self.__eq__, dataid_container))
380
return keys
381
382
- def _match_query_value(self, key, id_val):
383
- val = self._dict[key]
384
- if val == "*":
385
- return True
386
- if isinstance(id_val, tuple) and isinstance(val, (tuple, list)):
387
- return tuple(val) == id_val
388
- if not isinstance(val, list):
389
- val = [val]
390
- return id_val in val
391
-
392
def sort_dataids_with_preference(self, all_ids, preference):
393
"""Sort `all_ids` given a sorting `preference` (DataQuery or None)."""
394
try:
0 commit comments