We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I propose we switch to a convention like this, because the values are what is importnat and not the file metadata:
(ds_upper_air['latitude'] == ds_static.coords['latitude']).all()
the current system
ds_upper_air['latitude'].equals(ds_static.coords['latitude'])
throws an error if meta data is not preserved.
The text was updated successfully, but these errors were encountered:
@WillyChap I think if you merge two xr.datasets, their coordinates must be strictly equal, otherwise xarray will duplicate coordinate dims.
Sorry, something went wrong.
No branches or pull requests
I propose we switch to a convention like this, because the values are what is importnat and not the file metadata:
the current system
throws an error if meta data is not preserved.
The text was updated successfully, but these errors were encountered: