You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, xarray.concat() doesn't know how to deal with datasets for which one dataset contains some variables and these same variables are not present in the rest of the datasets to concatenate.
To address this issue, there are two options:
Add NaNs by determining the set of variables that are not in all datasets but at least in one dataset
and use .full_like(..., fill_value=np.nan) to add the variables not present in the other dataset (