Skip to content

Commit d502ae2

Browse files
committed
update the documentation links
Missing: section links in visualization_gallery.ipynb don't work yet, also the one in io.rst (it has a unicode char).
1 parent 36b5996 commit d502ae2

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

doc/data-structures.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -485,14 +485,14 @@ in xarray:
485485
:py:class:`pandas.Index` internally to store their values.
486486

487487
- **non-dimension coordinates** are variables that contain coordinate
488-
data, but are not a dimension coordinate. They can be multidimensional
489-
(see :ref:`examples.multidim`), and there is no relationship between the
490-
name of a non-dimension coordinate and the name(s) of its dimension(s).
491-
Non-dimension coordinates can be useful for indexing or plotting; otherwise,
492-
xarray does not make any direct use of the values associated with them.
493-
They are not used for alignment or automatic indexing, nor are they required
494-
to match when doing arithmetic
495-
(see :ref:`coordinates math`).
488+
data, but are not a dimension coordinate. They can be multidimensional (see
489+
:ref:`/examples/multidimensional-coords.ipynb`), and there is no
490+
relationship between the name of a non-dimension coordinate and the
491+
name(s) of its dimension(s). Non-dimension coordinates can be
492+
useful for indexing or plotting; otherwise, xarray does not make any
493+
direct use of the values associated with them. They are not used
494+
for alignment or automatic indexing, nor are they required to match
495+
when doing arithmetic (see :ref:`coordinates math`).
496496

497497
.. note::
498498

doc/io.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,8 +735,8 @@ The ``x`` and ``y`` coordinates are generated out of the file's metadata
735735
(``bounds``, ``width``, ``height``), and they can be understood as cartesian
736736
coordinates defined in the file's projection provided by the ``crs`` attribute.
737737
``crs`` is a PROJ4 string which can be parsed by e.g. `pyproj`_ or rasterio.
738-
See :ref:`recipes.rasterio` for an example of how to convert these to
739-
longitudes and latitudes.
738+
See :ref:`/examples/visualization_gallery.ipynb#Parsing-rasterio%u2019s-geocoordinates`
739+
for an example of how to convert these to longitudes and latitudes.
740740

741741
.. warning::
742742

doc/plotting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ coordinates.
782782
Multidimensional coordinates
783783
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
784784

785-
See also: :ref:`examples.multidim`.
785+
See also: :ref:`/examples/multidimensional-coords.ipynb`.
786786

787787
You can plot irregular grids defined by multidimensional coordinates with
788788
xarray, but you'll have to tell the plot function to use these coordinates

doc/whats-new.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2781,7 +2781,7 @@ Enhancements
27812781
- Groupby operations now support grouping over multidimensional variables. A new
27822782
method called :py:meth:`~xarray.Dataset.groupby_bins` has also been added to
27832783
allow users to specify bins for grouping. The new features are described in
2784-
:ref:`groupby.multidim` and :ref:`examples.multidim`.
2784+
:ref:`groupby.multidim` and :ref:`/examples/multidimensional-coords.ipynb`.
27852785
By `Ryan Abernathey <https://github.com/rabernat>`_.
27862786

27872787
- DataArray and Dataset method :py:meth:`where` now supports a ``drop=True``
@@ -3846,7 +3846,7 @@ Enhancements
38463846
- Long attributes are now truncated at 500 characters when printing a dataset
38473847
(:issue:`338`). This should make things more convenient for working with
38483848
datasets interactively.
3849-
- Added a new documentation example, :ref:`monthly means example`. Thanks Joe
3849+
- Added a new documentation example, :ref:`/examples/monthly-means.ipynb`. Thanks Joe
38503850
Hamman!
38513851

38523852
Bug fixes

0 commit comments

Comments
 (0)