Skip to content

Commit 7df1f0f

Browse files
committed
Load data as dask arrays in s3_open_fsspec mode
1 parent 282233f commit 7df1f0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ecco_access/ecco_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def ecco_podaac_to_xrdataset(query,version='v4r4',grid=None,time_res='all',\
425425
ds_out = {}
426426
for shortname,access_out in access_output.items():
427427
if mode == 's3_open_fsspec':
428-
curr_ds = xr.open_dataset(access_out,engine='zarr',consolidated=False)
428+
curr_ds = xr.open_dataset(access_out,engine='zarr',chunks='auto',consolidated=False)
429429
if 'time' in curr_ds.dims:
430430
# isolate time range specified
431431
startdate,enddate = date_adjustment(shortname,\

0 commit comments

Comments
 (0)