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 e4f4218 commit 3b85b89Copy full SHA for 3b85b89
src/emsarray/conventions/_base.py
@@ -1973,6 +1973,8 @@ def hash_geometry(self, hash: "hashlib._Hash") -> None:
1973
# Include the dtype of the data array.
1974
# A float array and an int array mean very different things,
1975
# but could have identical byte patterns.
1976
+ # Checking for encoding dtype and falling back to values.dtype due to
1977
+ # xarray multifile dataset bug - https://github.com/pydata/xarray/issues/2436
1978
hash_string(hash, data_array.encoding.get('dtype', data_array.values.dtype).name)
1979
1980
# Include the size and shape of the data.
0 commit comments