-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs * update isort call. * update pre-commit * fix isort
- Loading branch information
Showing
7 changed files
with
162 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,59 @@ | ||
.. currentmodule:: cf_xarray | ||
|
||
.. ipython:: python | ||
:suppress: | ||
import cf_xarray.accessor | ||
Contributing | ||
-------------- | ||
|
||
This section will be expanded later. | ||
|
||
.. autodata:: cf_xarray.accessor.coordinate_criteria | ||
.. autodata:: cf_xarray.accessor._WRAPPED_CLASSES | ||
This section will be expanded later. For now it lists docstrings for a number of internal variables, classes and functions. | ||
|
||
The following names are "special" | ||
Variables | ||
~~~~~~~~~ | ||
|
||
.. autodata:: cf_xarray.accessor._AXIS_NAMES | ||
.. autodata:: cf_xarray.accessor._COORD_NAMES | ||
.. autodata:: cf_xarray.accessor._CELL_MEASURES | ||
.. autodata:: cf_xarray.accessor._COORD_NAMES | ||
.. autodata:: cf_xarray.accessor._WRAPPED_CLASSES | ||
|
||
|
||
Attribute parsing | ||
+++++++++++++++++ | ||
|
||
This dictionary contains criteria for identifying axis and coords using CF attributes. It was copied from MetPy | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
|
||
~accessor.coordinate_criteria | ||
|
||
Classes | ||
~~~~~~~ | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
:template: autosummary/accessor_class.rst | ||
|
||
|
||
~accessor.CFAccessor | ||
~accessor._CFWrappedClass | ||
~accessor._CFWrappedPlotMethods | ||
|
||
Functions | ||
~~~~~~~~~ | ||
|
||
|
||
Primarily for developer reference. Some of these could become public API if necessary. | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
|
||
~accessor._getattr | ||
~accessor._get_axis_coord | ||
~accessor._get_axis_coord_single | ||
~accessor._get_list_standard_names | ||
~accessor._get_measure | ||
~accessor._get_measure_variable | ||
accessor._CFWrappedPlotMethods._plot_decorator |