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
When I try to load the following dataset with Zarr.jl, I get unfortunately an error:
using Zarr
ds = Zarr.zopen("https://s3.waw3-1.cloudferro.com/mdl-arco-time/arco/MEDSEA_MULTIYEAR_PHY_006_004/med-cmcc-cur-rean-d_202012/timeChunked.zarr")
ds["uo"][:,:,1,1]
# full error below
Yet, the data can be read with python zarr
import zarr
z = zarr.open("https://s3.waw3-1.cloudferro.com/mdl-arco-time/arco/MEDSEA_MULTIYEAR_PHY_006_004/med-cmcc-cur-rean-d_202012/timeChunked.zarr");
gz = z["uo"]
data = gz[0,0,:,:];
Note that all the data is filled with fill value (1e20) for this chunk. According to the OGC spec, it seems to be ok that not all chunks are present:
There is no need for all chunks to be present within an array store. If a chunk is not present then
it is considered to be in an uninitialized state. An unitialized chunk MUST be treated as if it was
uniformly filled with the value of the “fill_value” field in the array metadata. If the “fill_value” field
is null then the contents of the chunk are undefined.
Can Zarr.jl handle this case too? Are you accepting a PR for this issue?
The text was updated successfully, but these errors were encountered:
Alexander-Barth
changed the title
missing chunks to be filled with fill values
missing chunks to be filled with fill values ('
Feb 7, 2024
Alexander-Barth
changed the title
missing chunks to be filled with fill values ('
missing chunks to be filled with fill values (when server returns HTTP error 403)
Feb 7, 2024
When I try to load the following dataset with Zarr.jl, I get unfortunately an error:
Yet, the data can be read with python zarr
Note that all the data is filled with fill value (1e20) for this chunk. According to the OGC spec, it seems to be ok that not all chunks are present:
Can Zarr.jl handle this case too? Are you accepting a PR for this issue?
I am using Zarr v0.9.1.
Thank for this great package, by the way :-)
Full error from Zarr.jl:
The text was updated successfully, but these errors were encountered: