-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add keywords, move indicators API to its own page (#1502)
### What kind of change does this PR introduce? * Changes how the "keyword" attribute is inherited between indicators to inherit by concatenating. * Add basic keywords to all subclasses * Move the indicators API to its own page to lower loading times (it's still slow, but a lot more bearable IMO) ### Does this PR introduce a breaking change? No.
- Loading branch information
Showing
12 changed files
with
74 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
Indicators are the main tool xclim provides to compute climate indices. In contrast | ||
to the function defined in `xclim.indices`, Indicators add a layer of health checks | ||
and metadata handling. Indicator objects are split into realms : atmos, land and seaIce. | ||
|
||
Virtual modules are also inserted here. A normal installation of xclim comes with three virtual modules: | ||
|
||
- :py:mod:`xclim.indicators.cf`, Indicators defined in `cf-index-meta`. | ||
- :py:mod:`xclim.indicators.icclim`, Indicators defined by ECAD, as found in python package Icclim. | ||
- :py:mod:`xclim.indicators.anuclim`, Indicators of the Australian National University's Fenner School of Environment and Society. | ||
|
||
Climate Indicators API | ||
---------------------- | ||
|
||
.. automodule:: xclim.indicators.atmos | ||
:members: | ||
:undoc-members: | ||
:imported-members: | ||
|
||
.. automodule:: xclim.indicators.land | ||
:members: | ||
:undoc-members: | ||
:imported-members: | ||
|
||
.. automodule:: xclim.indicators.seaIce | ||
:members: | ||
:undoc-members: | ||
:imported-members: | ||
|
||
Virtual Indicator Submodules | ||
---------------------------- | ||
|
||
.. automodule:: xclim.indicators.cf | ||
:members: | ||
:imported-members: | ||
:undoc-members: | ||
|
||
.. automodule:: xclim.indicators.icclim | ||
:members: | ||
:imported-members: | ||
:undoc-members: | ||
|
||
.. automodule:: xclim.indicators.anuclim | ||
:members: | ||
:imported-members: | ||
:undoc-members: |
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
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