Is there a way of over-specifying chunks upon opening a dataset without throwing an error?
Currently, giving chunk sizes along dimensions that are not present in the dataset fails with a ValueError:
da = xr.DataArray(np.arange(10), dims=("x", ), name="example_data")
da.to_dataset().to_netcdf("example.nc")
ds = xr.open_dataset("example.nc", chunks={"x": 5, "y": 1})
Is there a way of over-specifying chunks upon opening a dataset without throwing an error?
Currently, giving chunk sizes along dimensions that are not present in the dataset fails with a
ValueError: