Skip to content

Commit 9179ade

Browse files
committed
trying to fix link checks
1 parent fe9141c commit 9179ade

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

intermediate/remote_data/remote-data.ipynb

+9-3
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
"The `open_dataset()` method is our entry point to n-dimensional data with xarray, the first argument we pass indicates what we want to open and is used by xarray to get the right backend and in turn is used by the backend to open the file locally or remote. The accepted types by xarray are:\n",
133133
"\n",
134134
"\n",
135-
"* **str**: \"my-file.nc\" or \"s3:://my-zarr-store/data.zarr\"\n",
135+
"* **str**: \"../../data/sst.mnmean.nc\" or \"s3:://my-zarr-store/data.zarr\"\n",
136136
"* **os.PathLike**: Posix compatible path, most of the times is a Pathlib cross-OS compatible path.\n",
137137
"* **BufferedIOBase**: some xarray backends can read data from a buffer, this is key for remote access.\n",
138138
"* **AbstractDataStore**: This one is the generic store and backends should subclass it, if we do we can pass a \"store\" to xarray like in the case of Opendap/Pydap\n",
@@ -178,7 +178,7 @@
178178
"id": "11",
179179
"metadata": {},
180180
"source": [
181-
"xarray iterated through the registered backends and netcdf4 returned a `\"yes, I can open that extension\"` see: [netCDF4_.py#L618 ](https://github.com/pydata/xarray/blob/6c2d8c3389afe049ccbfd1393e9a81dd5c759f78/xarray/backends/netCDF4_.py#L618). However, **the backend doesn't know how to \"talk\" to a remote store** and thus it fails to open our file.\n",
181+
"xarray iterated through the registered backends and netcdf4 returned a `\"yes, I can open that extension\"` see: [netCDF4_.py Line #L618 ](https://github.com/pydata/xarray/blob/6c2d8c3389afe049ccbfd1393e9a81dd5c759f78/xarray/backends/netCDF4_.py). However, **the backend doesn't know how to \"talk\" to a remote store** and thus it fails to open our file.\n",
182182
"\n"
183183
]
184184
},
@@ -430,6 +430,11 @@
430430
}
431431
],
432432
"metadata": {
433+
"kernelspec": {
434+
"display_name": "Python 3 (ipykernel)",
435+
"language": "python",
436+
"name": "python3"
437+
},
433438
"language_info": {
434439
"codemirror_mode": {
435440
"name": "ipython",
@@ -439,7 +444,8 @@
439444
"mimetype": "text/x-python",
440445
"name": "python",
441446
"nbconvert_exporter": "python",
442-
"pygments_lexer": "ipython3"
447+
"pygments_lexer": "ipython3",
448+
"version": "3.10.13"
443449
}
444450
},
445451
"nbformat": 4,

0 commit comments

Comments
 (0)