File tree Expand file tree Collapse file tree 11 files changed +29
-1
lines changed Expand file tree Collapse file tree 11 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1+ """Methods for constructing bandpass filters and decomposing 2d precipitation
2+ fields into different spatial scales."""
13
24from .interface import get_method
Original file line number Diff line number Diff line change 1+ """Methods for advection-based extrapolation of precipitation fields. Currently
2+ the module contains an implementation of the semi-Lagrangian method described
3+ in :cite:`GZ2002`."""
14
25from .interface import get_method
Original file line number Diff line number Diff line change 1+ """Methods for browsing data archives, reading 2d precipitation fields and writing
2+ forecasts into files."""
3+
14from .interface import get_method
25from .archive import *
36from .exporters import *
Original file line number Diff line number Diff line change 1+ """Implementations of optical flow methods."""
12
23from .interface import get_method
Original file line number Diff line number Diff line change 1+ """Methods for generating stochastic perturbations of 2d precipitation and velocity
2+ fields."""
3+
14from .interface import get_method
25from . import utils
Original file line number Diff line number Diff line change 1+ """Implementations of nowcasting methods. Currently the module contains a
2+ deterministic advection extrapolation method and STEPS."""
13
24from .interface import get_method
Original file line number Diff line number Diff line change 1+ """Methods for post-processing of forecasts. Currently the module contains
2+ cumulative density function (CDF)-based matching between a forecast and the
3+ target distribution and computation of mean value and exceedance probabilities
4+ from forecast ensembles."""
5+
16from . import ensemblestats
Original file line number Diff line number Diff line change 1-
1+ """Methods and models for time series analysis. Currently the module contains
2+ implementation of an autoregressive AR(p) model and methods for estimating
3+ the model parameters."""
Original file line number Diff line number Diff line change 1+ """Utility functions for converting data values to/from different units,
2+ manipulating the dimensions of precipitation fields and computing the FFT."""
3+
14from .arrays import *
25from .conversion import *
36from .dimension import *
Original file line number Diff line number Diff line change 1+ """Methods for verification of deterministic and ensemble forecasts."""
2+
13from .interface import get_method
24from .detcatscores import *
35from .detcontscores import *
You can’t perform that action at this time.
0 commit comments