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 6883cb8 commit 5c767a8Copy full SHA for 5c767a8
xarray_esgf/client.py
@@ -1,5 +1,6 @@
1
import asyncio
2
import dataclasses
3
+import logging
4
from collections import defaultdict
5
from collections.abc import Callable, Iterable
6
from functools import cached_property
@@ -25,6 +26,8 @@
25
26
"version",
27
]
28
29
+LOGGER = logging.getLogger()
30
+
31
32
def use_new_combine_kwarg_defaults[**P, T](func: Callable[P, T]) -> Callable[P, T]:
33
def wrapper(*args: P.args, **kwds: P.kwargs) -> T:
@@ -159,6 +162,7 @@ def open_dataset(
159
162
])
160
163
ds = ds.expand_dims({dim: [dataset_id_dict[dim]] for dim in concat_dims})
161
164
combined_datasets[dataset_id] = ds
165
+ LOGGER.debug(f"{dataset_id}: {dict(ds.sizes)}")
166
167
obj = xr.combine_by_coords(
168
combined_datasets.values(),
0 commit comments