@@ -978,6 +978,40 @@ and DataTree objects, respectively.
978
978
core.coordinates.DataArrayCoordinates
979
979
core.coordinates.DataTreeCoordinates
980
980
981
+ Indexes
982
+ =======
983
+
984
+ Default, pandas-backed indexes built-in to Xarray:
985
+
986
+ .. autosummary ::
987
+ :toctree: generated/
988
+
989
+ indexes.PandasIndex
990
+ indexes.PandasMultiIndex
991
+
992
+
993
+ More complex indexes built-in to Xarray:
994
+
995
+ .. autosummary ::
996
+ :toctree: generated/
997
+
998
+ CFTimeIndex
999
+ indexes.RangeIndex
1000
+ indexes.NDPointIndex
1001
+
1002
+
1003
+ Creating indexes
1004
+ ----------------
1005
+ .. autosummary ::
1006
+ :toctree: generated/
1007
+
1008
+ cftime_range
1009
+ date_range
1010
+ date_range_like
1011
+ indexes.RangeIndex.arange
1012
+ indexes.RangeIndex.linspace
1013
+
1014
+
981
1015
Universal functions
982
1016
===================
983
1017
@@ -1571,31 +1605,39 @@ Custom Indexes
1571
1605
==============
1572
1606
.. currentmodule :: xarray
1573
1607
1608
+ Building custom indexes
1609
+ -----------------------
1610
+
1611
+ These classes are building blocks for more complex Indexes:
1612
+
1574
1613
.. autosummary ::
1575
1614
:toctree: generated/
1576
1615
1577
- CFTimeIndex
1578
- indexes.RangeIndex
1616
+ indexes.CoordinateTransform
1579
1617
indexes.CoordinateTransformIndex
1580
1618
indexes.NDPointIndex
1581
1619
1582
- Creating custom indexes
1583
- -----------------------
1584
- .. autosummary ::
1585
- :toctree: generated/
1586
-
1587
- cftime_range
1588
- date_range
1589
- date_range_like
1590
- indexes.RangeIndex.arange
1591
- indexes.RangeIndex.linspace
1620
+ The Index base class for building custom indexes:
1592
1621
1593
- Building custom indexes
1594
- -----------------------
1595
1622
.. autosummary ::
1596
1623
:toctree: generated/
1597
1624
1598
- indexes.CoordinateTransform
1625
+ Index.from_variables
1626
+ Index.concat
1627
+ Index.stack
1628
+ Index.unstack
1629
+ Index.create_variables
1630
+ Index.should_add_coord_to_array
1631
+ Index.to_pandas_index
1632
+ Index.isel
1633
+ Index.sel
1634
+ Index.join
1635
+ Index.reindex_like
1636
+ Index.equals
1637
+ Index.roll
1638
+ Index.rename
1639
+ Index.copy
1640
+
1599
1641
1600
1642
Tutorial
1601
1643
========
@@ -1702,14 +1744,6 @@ Advanced API
1702
1744
.. Missing:
1703
1745
.. ``DataTree.set_close``
1704
1746
1705
- Default, pandas-backed indexes built-in Xarray:
1706
-
1707
- .. autosummary ::
1708
- :toctree: generated/
1709
-
1710
- indexes.PandasIndex
1711
- indexes.PandasMultiIndex
1712
-
1713
1747
These backends provide a low-level interface for lazily loading data from
1714
1748
external file-formats or protocols, and can be manually invoked to create
1715
1749
arguments for the ``load_store `` and ``dump_to_store `` Dataset methods:
0 commit comments