Skip to content

Commit

Permalink
trying to fix link checks
Browse files Browse the repository at this point in the history
  • Loading branch information
betolink committed Jul 18, 2024
1 parent fe9141c commit 9179ade
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions intermediate/remote_data/remote-data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"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",
"\n",
"\n",
"* **str**: \"my-file.nc\" or \"s3:://my-zarr-store/data.zarr\"\n",
"* **str**: \"../../data/sst.mnmean.nc\" or \"s3:://my-zarr-store/data.zarr\"\n",
"* **os.PathLike**: Posix compatible path, most of the times is a Pathlib cross-OS compatible path.\n",
"* **BufferedIOBase**: some xarray backends can read data from a buffer, this is key for remote access.\n",
"* **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",
Expand Down Expand Up @@ -178,7 +178,7 @@
"id": "11",
"metadata": {},
"source": [
"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",
"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",
"\n"
]
},
Expand Down Expand Up @@ -430,6 +430,11 @@
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
Expand All @@ -439,7 +444,8 @@
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3"
"pygments_lexer": "ipython3",
"version": "3.10.13"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 9179ade

Please sign in to comment.