dapper

Root package of DAPPER (Data Assimilation with Python: a Package for Experimental Research)

API reference

Click the links in the navigation menu to view the docs for the various modules.

Installation

See README/Installation

Usage

See README/Getting-started

Examples

See examples/README

Adding your own model/method

If you wish to illustrate and run benchmarks with your own model or method, then

  • If it is a complex one, you may be better off using DAPPER merely as inspiration (but you can still cite it) rather than trying to squeeze everything into its templates.
  • If it is relatively simple, however, you may well want to use DAPPER. In that case, read this:

Since the generality of DAPPER is limited it is quite likely you will also need to make changes to the DAPPER code itself.

Developer guide

If you are making a pull request, please read the developer guide.

Bibliography

Click the various citations/references (e.g. bib.anderson2010non) to access the bibliography.

 1"""Root package of **DAPPER**
 2(Data Assimilation with Python: a Package for Experimental Research)
 3
 4.. include:: ./README.md
 5"""
 6
 7__version__ = "1.6.0"
 8
 9# A parsimonious list of imports used in the examples
10from .dpr_config import rc
11from .tools.datafiles import find_latest_run, load_xps
12from .tools.rounding import round2sigfig
13from .tools.seeding import rng, set_seed
14from .xp_launch import combinator, seed_and_simulate, xpList
15from .xp_process import xpSpace