We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 061f443 commit bcc4993Copy full SHA for bcc4993
1 file changed
README.md
@@ -24,10 +24,9 @@ import xarray_sql as xql
24
# keeps Dask's partition setup cheap before any chunks are read from GCS.
25
ds = (
26
xr.open_zarr('gs://gcp-public-data-arco-era5/ar/full_37-1h-0p25deg-chunk-1.zarr-v3',
27
- chunks=None,
+ chunks=dict(time=1),
28
storage_options={'token': 'anon'}) # Anonymous read from the public GCS bucket — no auth required.
29
.sel(time='2020')
30
- .chunk({'time': 1})
31
)
32
33
ctx = xql.XarrayContext()
0 commit comments