Skip to content

Commit 5bcef2e

Browse files
committed
Merge branch 'master' of https://github.com/pySTEPS/pysteps
2 parents 1ccc42c + 6a468e8 commit 5bcef2e

File tree

27 files changed

+153
-45
lines changed

27 files changed

+153
-45
lines changed

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = u'0.1'
63+
version = u'0.2'
6464
# The full version, including alpha/beta/rc tags.
65-
release = u'0.1'
65+
release = u'0.2'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

doc/source/cascade.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
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.
6+
Methods for constructing bandpass filters and decomposing 2d precipitation
7+
fields into different spatial scales.
88

99
pysteps.cascade.interface
1010
-------------------------

doc/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and objects included in pysteps.
1919
:maxdepth: 2
2020
:caption: Contents
2121

22-
nowcasting
22+
nowcasts
2323
io
2424
motion
2525
extrapolation

doc/source/io.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ pysteps\.io\.importers
2727
import_bom_rf3
2828
import_fmi_pgm
2929
import_mch_gif
30+
import_mch_hdf5
31+
import_mch_metranet
3032
import_odim_hdf5
3133

3234
.. automodule:: pysteps.io.importers

doc/source/motion.rst

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
.. _pysteps.motion:
2+
3+
Optical flow methods (:mod:`pysteps.motion`)
4+
********************************************
5+
6+
Implementations of optical flow methods.
7+
8+
pysteps\.motion\.interface
9+
--------------------------
10+
11+
.. automodule:: pysteps.motion.interface
12+
:members:
13+
14+
pysteps\.motion\.darts
15+
----------------------
16+
17+
.. automodule:: pysteps.motion.darts
18+
:members:
19+
20+
pysteps\.motion\.lucaskanade
21+
----------------------------
22+
23+
.. currentmodule:: pysteps.motion.lucaskanade
24+
25+
.. autosummary::
26+
dense_lucaskanade
27+
28+
.. automodule:: pysteps.motion.lucaskanade
29+
:members:
30+
31+
pysteps\.motion\.vet
32+
--------------------
33+
34+
.. currentmodule:: pysteps.motion.vet
35+
36+
.. autosummary::
37+
vet
38+
39+
.. automodule:: pysteps.motion.vet
40+
:members:
File renamed without changes.

doc/source/postprocessing.rst

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ Post-processing of forecasts (:mod:`pysteps.postprocessing`)
55

66
Methods for post-processing of forecasts. Currently the module contains
77
cumulative density function (CDF)-based matching between a forecast and the
8-
target distribution.
8+
target distribution and computation of mean value and exceedance probabilities
9+
from forecast ensembles.
10+
11+
pysteps\.postprocessing\.ensemblestats
12+
--------------------------------------
13+
14+
.. currentmodule:: pysteps.postprocessing.ensemblestats
15+
16+
.. autosummary::
17+
mean
18+
excprob
19+
20+
.. automodule:: pysteps.postprocessing.ensemblestats
21+
:members:
922

1023
pysteps\.postprocessing\.probmatching
1124
-------------------------------------
@@ -17,6 +30,7 @@ pysteps\.postprocessing\.probmatching
1730
nonparam_match_empirical_cdf
1831
pmm_init
1932
pmm_compute
33+
shift_scale
2034

2135
.. automodule:: pysteps.postprocessing.probmatching
2236
:members:

doc/source/references.bib

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ @ARTICLE{PCH2018
8080
AUTHOR = "S. Pulkkinen and V. Chandrasekar and A.-M. Harri",
8181
TITLE = "Nowcasting of Precipitation in the High-Resolution {D}allas-{F}ort {W}orth ({DFW}) Urban Radar Remote Sensing Network",
8282
JOURNAL = "IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing",
83-
NOTE = "accepted, to appear",
83+
VOLUME = 11,
84+
NUMBER = 8,
85+
PAGES = "2773--2787",
8486
YEAR = 2018,
8587
DOI = "10.1109/JSTARS.2018.2840491"
8688
}

doc/source/timeseries.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ pysteps\.timeseries\.autoregression
1313
.. currentmodule:: pysteps.timeseries.autoregression
1414

1515
.. autosummary::
16-
adjust_lag2_corrcoef
16+
adjust_lag2_corrcoef1
17+
adjust_lag2_corrcoef2
1718
estimate_ar_params_yw
1819
iterate_ar_model
1920

doc/source/utils.rst

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
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.
6+
Utility functions for converting data values to/from different units,
7+
manipulating the dimensions of precipitation fields and computing the FFT.
88

99
pysteps\.utils\.conversion
1010
--------------------------
@@ -26,12 +26,25 @@ pysteps\.utils\.dimension
2626

2727
.. autosummary::
2828
aggregate_fields_time
29+
aggregate_fields_space
2930
aggregate_fields
31+
clip_domain
3032
square_domain
3133

3234
.. automodule:: pysteps.utils.dimension
3335
:members:
3436

37+
pysteps\.utils\.fft
38+
-------------------
39+
40+
.. currentmodule:: pysteps.utils.fft
41+
42+
.. autosummary::
43+
get_method
44+
45+
.. automodule:: pysteps.utils.fft
46+
:members:
47+
3548
pysteps\.utils\.interface
3649
-------------------------
3750

@@ -47,6 +60,8 @@ pysteps\.utils\.transformation
4760
dB_transform
4861
boxcox_transform
4962
boxcox_transform_test_lambdas
63+
NQ_transform
64+
sqrt_transform
5065

5166
.. automodule:: pysteps.utils.transformation
5267
:members:

0 commit comments

Comments
 (0)