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.
2 parents 5377945 + 40069c4 commit abe91fcCopy full SHA for abe91fc
cads_adaptors/tools/area_selector.py
@@ -8,7 +8,7 @@
8
from earthkit.transforms import tools as eka_tools
9
10
from cads_adaptors.adaptors import Context
11
-from cads_adaptors.exceptions import InvalidRequest
+from cads_adaptors.exceptions import CdsFormatConversionError, InvalidRequest
12
from cads_adaptors.tools import adaptor_tools, convertors
13
14
@@ -312,7 +312,7 @@ def area_selector_paths(
312
out_paths += area_selector_path(
313
path, area=area, context=context, **kwargs
314
)
315
- except NotImplementedError:
+ except (NotImplementedError, CdsFormatConversionError):
316
context.logger.debug(
317
f"could not convert {path} to xarray; returning the original data"
318
0 commit comments