id,node_id,number,title,user,state,locked,assignee,milestone,comments,created_at,updated_at,closed_at,author_association,active_lock_reason,draft,pull_request,body,reactions,performed_via_github_app,state_reason,repo,type 1859703572,I_kwDOAMm_X85u2NMU,8095,Support `inline_array` kwarg in `open_zarr`,2448579,open,0,,,2,2023-08-21T16:09:38Z,2023-09-21T20:37:50Z,,MEMBER,,,,"cc @TomNicholas ### What happened? There is no way to specify `inline_array` in `open_zarr`. Instead we have to use `open_dataset`. ### Minimal Complete Verifiable Example ```Python import xarray as xr xr.Dataset({""a"": xr.DataArray([1.0])}).to_zarr(""temp.zarr"") ``` ```python xr.open_zarr('temp.zarr', inline_array=True) ``` ``` ValueError: argument inline_array cannot be passed both as a keyword argument and within the from_array_kwargs dictionary ``` ```python xr.open_zarr('temp.zarr', from_array_kwargs=dict(inline_array=True)) ``` ``` ValueError: argument inline_array cannot be passed both as a keyword argument and within the from_array_kwargs dictionary ``` ","{""url"": ""https://api.github.com/repos/pydata/xarray/issues/8095/reactions"", ""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,,13221727,issue