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
The data used in the example in that repository has an 8-bit unsigned integer format. The .zattr JSON files created by jzarr currently have the following entry
"dtype" : ">u1",
but .zattr files created by other libraries such as zarr-python, xtensor-zarr and z5py have:
"dtype" : "|u1",
It seems that the spec indicates that | should be used rather than > or < for data types with a single byte width where there is no endianness. A similar issue may also be present for |b1 and |i1 types, but I have not confirmed that.
The text was updated successfully, but these errors were encountered:
cc @joshmoore
While running a branch of zarr_implementations with jzarr-based read/write tests (with jzarr 0.3.2), I encountered the following issue.
The data used in the example in that repository has an 8-bit unsigned integer format. The
.zattr
JSON files created by jzarr currently have the following entrybut
.zattr
files created by other libraries such as zarr-python, xtensor-zarr and z5py have:It seems that the spec indicates that
|
should be used rather than>
or<
for data types with a single byte width where there is no endianness. A similar issue may also be present for|b1
and|i1
types, but I have not confirmed that.The text was updated successfully, but these errors were encountered: