We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 678d4e9 commit 29d9fb8Copy full SHA for 29d9fb8
doc/user-guide/io.rst
@@ -1020,16 +1020,17 @@ The following example shows opening a combined references generated from a ``.hd
1020
1021
storage_options = {
1022
"target_protocol": "file",
1023
- "remote_protocol": "s3", # assuming you're working with a file in AWS
1024
}
1025
1026
- ds = xr.open_dataset(
+ # add **remote_protocol** key in ``storage_options`` if you're accessing a file in the cloud
+
1027
+ ds1 = xr.open_dataset(
1028
"./combined.json",
1029
engine="kerchunk",
1030
storage_options=storage_options,
1031
)
1032
- ds
1033
+ ds1
1034
1035
.. note::
1036
0 commit comments