From 29d9fb80df7ecba059a323b50131e5ed91deb6fb Mon Sep 17 00:00:00 2001 From: Anu-Ra-g Date: Mon, 24 Jun 2024 21:21:14 +0530 Subject: [PATCH] added new updates to io.rst --- doc/user-guide/io.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/user-guide/io.rst b/doc/user-guide/io.rst index 15eab25407c..c90dd0c8acc 100644 --- a/doc/user-guide/io.rst +++ b/doc/user-guide/io.rst @@ -1020,16 +1020,17 @@ The following example shows opening a combined references generated from a ``.hd storage_options = { "target_protocol": "file", - "remote_protocol": "s3", # assuming you're working with a file in AWS } - ds = xr.open_dataset( + # add **remote_protocol** key in ``storage_options`` if you're accessing a file in the cloud + + ds1 = xr.open_dataset( "./combined.json", engine="kerchunk", storage_options=storage_options, ) - ds + ds1 .. note::