Skip to content

Commit 1e7b7cd

Browse files
committed
Merge branch 'master' of https://github.com/pySTEPS/pysteps
2 parents 2c31d16 + f168b63 commit 1e7b7cd

38 files changed

+201
-121
lines changed

doc/source/advection.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Advection-based extrapolation (:mod:`pysteps.advection`)
44
********************************************************
55

6+
Methods for advection-based extrapolation of precipitation fields. Currently
7+
the module contains an implementation of the semi-Lagrangian method described
8+
in :cite:`GZ2002`.
9+
610
pysteps\.advection\.interface
711
-----------------------------
812

doc/source/cascade.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Scale-based decomposition of precipitation fields (:mod:`pysteps.cascade`)
44
**************************************************************************
55

6+
Methods for band-pass filtering and scale-based decomposition of 2d precipitation
7+
fields.
8+
69
pysteps.cascade.interface
710
-------------------------
811

doc/source/io.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Input/output routines (:mod:`pysteps.io`)
44
*****************************************
55

6+
Methods for browsing data archives, reading 2d precipitation fields and writing
7+
forecasts into files.
8+
69
pysteps\.io\.interface
710
----------------------
811

doc/source/noise.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Noise generators (:mod:`pysteps.noise`)
44
***************************************
55

6+
Methods for generating stochastic perturbations of 2d precipitation and velocity
7+
fields.
8+
69
pysteps\.noise\.interface
710
-------------------------
811

doc/source/nowcasting.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Nowcasting methods (:mod:`pysteps.nowcasts`)
44
********************************************
55

6+
Implementations of nowcasting methods. Currently the module contains a
7+
deterministic advection extrapolation method and STEPS.
8+
69
pysteps\.nowcasts\.interface
710
----------------------------
811

doc/source/oflow.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Optical flow methods (:mod:`pysteps.optflow`)
44
*********************************************
55

6+
Implementations of optical flow methods.
7+
68
pysteps\.optflow\.interface
79
---------------------------
810

doc/source/postprocessing.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Post-processing of forecasts (:mod:`pysteps.postproc`)
44
******************************************************
55

6+
Methods for post-processing of forecasts. Currently the module contains
7+
cumulative density function (CDF)-based matching between a forecast and the
8+
target distribution.
9+
610
pysteps\.postproc\.probmatching
711
-------------------------------
812

doc/source/timeseries.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Time series modeling and analysis (:mod:`pysteps.timeseries`)
44
*************************************************************
55

6+
Methods and models for time series analysis. Currently the module contains
7+
implementation of an autoregressive AR(p) model and methods for estimating
8+
the model parameters.
9+
610
pysteps\.timeseries\.autoregression
711
-----------------------------------
812

doc/source/utils.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
Miscellaneous utility functions (:mod:`pysteps.utils`)
44
******************************************************
55

6+
Utility functions for converting data values to/from different units and
7+
manipulating the dimensions of precipitation fields.
8+
69
pysteps\.utils\.conversion
710
--------------------------
811

912
.. currentmodule:: pysteps.utils.conversion
1013

1114
.. autosummary::
1215
to_rainrate
13-
to_raindetph
16+
to_raindepth
1417
to_reflectivity
1518

1619
.. automodule:: pysteps.utils.conversion

doc/source/verification.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
Forecast verification (:mod:`pysteps.verification`)
44
***************************************************
55

6+
Methods for verification of deterministic and ensemble forecasts.
7+
68
pysteps\.verification\.detcatscores
79
-----------------------------------
810

911
.. currentmodule:: pysteps.verification.detcatscores
1012

1113
.. autosummary::
12-
scores_det_cont_fsct
14+
scores_det_cat_fcst
1315

1416
.. automodule:: pysteps.verification.detcatscores
1517
:members:
@@ -20,7 +22,7 @@ pysteps\.verification\.detcontscores
2022
.. currentmodule:: pysteps.verification.detcontscores
2123

2224
.. autosummary::
23-
scores_det_cont_fsct
25+
scores_det_cont_fcst
2426

2527
.. automodule:: pysteps.verification.detcontscores
2628
:members:

0 commit comments

Comments
 (0)