diff --git a/_config.yml b/_config.yml index 85a12b15..41049415 100644 --- a/_config.yml +++ b/_config.yml @@ -68,10 +68,13 @@ sphinx: # maintain old paths and redirect them (so google results dont go to 404) # https://github.com/wpilibsuite/sphinxext-rediraffe - sphinxext.rediraffe + - sphinx_codeautolink + config: language: en # accessibility # application/vnd.holoviews_load.v0+json, application/vnd.holoviews_exec.v0+json suppress_warnings: ["mystnb.unknown_mime_type", "misc.highlighting_failure"] + codeautolink_concat_default: True notfound_context: body: "
Sorry, this page doesn't exist. Many sections of this book have been updated recently.
Try the search box 🔎 to find what you're looking for!
" notfound_urls_prefix: / @@ -81,3 +84,26 @@ sphinx: fundamentals/02.1_working_with_labeled_data.ipynb: fundamentals/02.1_indexing_Basic.ipynb bibtex_reference_style: author_year # or label, super, \supercite + + intersphinx_mapping: + xarray: + - https://docs.xarray.dev/en/latest/ + - null + numpy: + - https://numpy.org/doc/stable + - null + scipy: + - https://docs.scipy.org/doc/scipy + - null + matplotlib: + - https://matplotlib.org/stable/ + - null + dask: + - https://docs.dask.org/en/latest + - null + python: + - https://docs.python.org/3/ + - null + pandas: + - https://pandas.pydata.org/pandas-docs/stable + - null diff --git a/advanced/apply_ufunc/complex-output-numpy.ipynb b/advanced/apply_ufunc/complex-output-numpy.ipynb index e7336a77..0ad4c244 100644 --- a/advanced/apply_ufunc/complex-output-numpy.ipynb +++ b/advanced/apply_ufunc/complex-output-numpy.ipynb @@ -336,7 +336,7 @@ "\n", "Try applying the minmax function to a 3d air temperature dataset \n", "```python\n", - "air3d = xr.tutorial.load_dataset(\"air_temperature\").air)\n", + "air3d = xr.tutorial.load_dataset(\"air_temperature\").air\n", "``` \n", "Your goal is to have a minimum and maximum value of temperature across all latitudes for a given time and longitude.\n", "\n", diff --git a/advanced/backends/1.Backend_without_Lazy_Loading.ipynb b/advanced/backends/1.Backend_without_Lazy_Loading.ipynb index 4519950e..e396d869 100644 --- a/advanced/backends/1.Backend_without_Lazy_Loading.ipynb +++ b/advanced/backends/1.Backend_without_Lazy_Loading.ipynb @@ -42,7 +42,6 @@ "\n", "```python\n", "setuptools.setup(\n", - " ...\n", " entry_points={\n", " 'xarray.backends': ['engine_name=package.module:my_backendentrypoint'],\n", " },\n", @@ -51,7 +50,7 @@ "or pass it in `xr.open_dataset`:\n", "\n", "```python\n", - "xr.open_dataset(..., engine=MyBackendEntrypoint)\n", + "xr.open_dataset(filename, engine=MyBackendEntrypoint)\n", "```" ] },