Skip to content

Commit

Permalink
Update tutorial.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
rsignell-usgs authored Aug 31, 2023
1 parent e34412b commit ca1391c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -539,11 +539,11 @@ s3://esip-qhub-public/ecmwf/ERA5_2020_2022_multivar.json.zst
.. code::
%%time
fs = fsspec.filesystem("reference", fo='s3://esip-qhub-public/ecmwf/ERA5_1979_2022_multivar.json.zst',
ref_storage_args={"compression": "zstd"},
fs = fsspec.filesystem('reference', fo='s3://esip-qhub-public/ecmwf/ERA5_1979_2022_multivar.json.zst',
target_options={'compression': 'zstd', 'anon':True},
remote_protocol='s3', remote_options={'anon':True})
m = fs.get_mapper("")
ds = xr.open_dataset(m, engine="zarr", backend_kwargs={'consolidated':False})
m = fs.get_mapper('')
ds = xr.open_dataset(m, engine='zarr', backend_kwargs={'consolidated':False})
print(ds)
Expand Down

0 comments on commit ca1391c

Please sign in to comment.