File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ dependencies:
9
9
- cartopy
10
10
- cfgrib
11
11
- kerchunk
12
- - s3fs
13
12
- dask-core>=2022.1
14
13
- dask-expr
15
14
- hypothesis>=6.75.8
Original file line number Diff line number Diff line change @@ -1008,19 +1008,19 @@ directory `here <https://github.com/pydata/xarray-data>`_.
1008
1008
Packages like `kerchunk `_ and `virtualizarr <https://github.com/zarr-developers/VirtualiZarr >`_
1009
1009
help in creating and reading these references.
1010
1010
1011
+
1011
1012
Reading these data archives becomes really easy with ``kerchunk `` in combination
1012
1013
with ``xarray ``, especially when these archives are large in size. A single combined
1013
1014
reference can refer to thousands of the original data files present in these archives.
1014
1015
You can view the whole dataset with from this `combined reference ` using the above packages.
1015
1016
1016
- The following example shows opening a combined references generated from a ``.hdf `` file.
1017
+ The following example shows opening a combined references generated from a ``.hdf `` file stored locally .
1017
1018
1018
1019
.. ipython :: python
1019
1020
1020
1021
storage_options = {
1021
- " remote_protocol" : " s3" ,
1022
- " skip_instance_cache" : True ,
1023
1022
" target_protocol" : " file" ,
1023
+ " remote_protocol" : " s3" , # assuming you're working with a file in AWS
1024
1024
}
1025
1025
1026
1026
ds = xr.open_dataset(
@@ -1202,7 +1202,6 @@ The simplest way to serialize an xarray object is to use Python's built-in pickl
1202
1202
module:
1203
1203
1204
1204
.. ipython :: python
1205
- :okexcept:
1206
1205
1207
1206
import pickle
1208
1207
You can’t perform that action at this time.
0 commit comments