Hello guys!
I'm trying to build kerchunk index for ERA5 full dataset.
Everythg goes well when I'm merging daily data, but when I try to build combined index for months with different amount of days like January and February for example:
e5.oper.an.sfc.128_134_sp.ll025sc.2019010100_2019013123.nc
e5.oper.an.sfc.128_134_sp.ll025sc.2019020100_2019022823.nc
from kerchunk.combine import MultiZarrToZarr
mzz = MultiZarrToZarr(
singles,
remote_protocol="s3",
remote_options={'anon': False},
concat_dims=["time"],
identical_dims = ['latitude', 'longitude'],
)
I get the AssertionError: Found chunk size mismatch.
Probably I'm doing something wrong?
Hello guys!
I'm trying to build kerchunk index for ERA5 full dataset.
Everythg goes well when I'm merging daily data, but when I try to build combined index for months with different amount of days like January and February for example:
e5.oper.an.sfc.128_134_sp.ll025sc.2019010100_2019013123.nc
e5.oper.an.sfc.128_134_sp.ll025sc.2019020100_2019022823.nc
I get the AssertionError: Found chunk size mismatch.
Probably I'm doing something wrong?