HydPy 5.0.1__tar.gz → 5.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {HydPy-5.0.1 → HydPy-5.0.3}/.travis.yml +10 -10
- {HydPy-5.0.1 → HydPy-5.0.3/HydPy.egg-info}/PKG-INFO +18 -5
- {HydPy-5.0.1 → HydPy-5.0.3}/HydPy.egg-info/SOURCES.txt +32 -0
- {HydPy-5.0.1/HydPy.egg-info → HydPy-5.0.3}/PKG-INFO +18 -5
- {HydPy-5.0.1 → HydPy-5.0.3}/README.rst +2 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/appveyor.yml +17 -18
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/__init__.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/anntools.py +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/armatools.py +103 -37
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/calibtools.py +6 -6
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/interptools.py +20 -42
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/iuhtools.py +38 -12
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/statstools.py +9 -14
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/xmltools.py +1 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/aliastools.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/autodoctools.py +15 -19
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/auxfiletools.py +5 -5
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/devicetools.py +9 -14
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/filetools.py +2 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/importtools.py +2 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/indextools.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/itemtools.py +6 -4
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/masktools.py +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/modeltools.py +4 -6
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/netcdftools.py +46 -33
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/objecttools.py +5 -8
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/parametertools.py +15 -23
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/propertytools.py +0 -3
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/selectiontools.py +2 -3
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/sequencetools.py +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/seriestools.py +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/testtools.py +44 -47
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/timetools.py +25 -21
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/typingtools.py +4 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/variabletools.py +96 -29
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/annutils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/annutils.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_arma.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_arma_v1.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv_v001.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv_v002.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv_v003.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam.pyx +4 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v001.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v002.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v003.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v004.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v005.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v006.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v007.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v008.pyx +6 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dummy.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dummy_v1.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_evap.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_evap_v001.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_exch.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_exch_v001.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hbranch.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hbranch_v1.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v1.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v2.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v3.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v4.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_llake.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_llake_v1.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v1.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v2.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v3.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v4.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lstream.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lstream_v001.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lstream_v002.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v001.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v002.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v003.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v004.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_musk.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_musk_classic.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_musk_mct.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test_v1.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test_v2.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test_v3.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_wland.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_wland_v001.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_wland_v002.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/configutils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/configutils.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/interputils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/interputils.pyx +3 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/pointerutils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/pointerutils.pyx +50 -25
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/ppolyutils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/ppolyutils.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/quadutils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/quadutils.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/rootutils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/rootutils.pyx +2 -0
- {HydPy-5.0.1/hydpy/cythons → HydPy-5.0.3/hydpy/cythons/autogen}/sequenceutils.pxd +46 -44
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/sequenceutils.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/smoothutils.pxd +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/smoothutils.pyx +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/configutils.pyi +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/interputils.pyi +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/interputils.pyx +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/modelutils.py +34 -25
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/pointerutils.pyx +48 -25
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/quadutils.pyi +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/rootutils.pyi +0 -1
- {HydPy-5.0.1/hydpy/cythons/autogen → HydPy-5.0.3/hydpy/cythons}/sequenceutils.pxd +36 -52
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/combine_docversions.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/draw_model_sketches.py +0 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/prepare.py +10 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-A.rst +1 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-C.rst +1 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Dummy.rst +1 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Evap.rst +1 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Meteo.rst +1 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-T.rst +1 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-W.rst +1 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/index.rst +2 -2
- HydPy-5.0.3/hydpy/docs/rst/install.rst +115 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/programming_style.rst +3 -3
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/changes/frameset.html +11 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/changes/rstsource.html +15 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/changes/versionchanges.html +33 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/defindex.html +35 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/domainindex.html +56 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/genindex-single.html +63 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/genindex-split.html +41 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/genindex.html +76 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/globaltoc.html +11 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/layout.html +221 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/localtoc.html +15 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/opensearch.xml +13 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/page.html +13 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/relations.html +23 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/search.html +65 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/searchbox.html +21 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/searchfield.html +23 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/sourcelink.html +18 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/basic.css_t +925 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/doctools.js +156 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/documentation_options.js_t +13 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/file.png +0 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/language_data.js_t +26 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/minus.png +0 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/plus.png +0 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/searchtools.js +574 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/sphinx_highlight.js +154 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/theme.conf +16 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/layout.html +23 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/static/classic.css_t +358 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/static/sidebar.js_t +72 -0
- HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/theme.conf +32 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/conf.py +6 -6
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/examples.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/commandtools.py +5 -20
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/servertools.py +15 -16
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_control.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_derived.py +2 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_control.py +19 -7
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_derived.py +10 -8
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_model.py +2 -4
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_model.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_control.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_derived.py +1 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_masks.py +7 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_control.py +0 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_model.py +5 -5
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_control.py +2 -2
- {HydPy-5.0.1 → HydPy-5.0.3}/licenses_hydpy_installer.txt +2 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/make_hydpy_installer.cfgt +11 -15
- {HydPy-5.0.1 → HydPy-5.0.3}/noxfile.py +2 -1
- {HydPy-5.0.1 → HydPy-5.0.3}/prepare_build.py +2 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/pylintrc +6 -3
- {HydPy-5.0.1 → HydPy-5.0.3}/pyproject.toml +1 -3
- {HydPy-5.0.1 → HydPy-5.0.3}/requirements.txt +2 -6
- {HydPy-5.0.1 → HydPy-5.0.3}/setup.py +5 -7
- HydPy-5.0.1/hydpy/docs/rst/install.rst +0 -122
- {HydPy-5.0.1 → HydPy-5.0.3}/.gitignore +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/LICENSE +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/call_installer.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/execute_exe.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/networktools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/ppolytools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/quadtools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/roottools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/smoothtools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/validtools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigBase.xsd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigBase.xsdt +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigMultipleRuns.xsd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigSingleRun.xsd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/a_coefficients_explicit_lobatto_sequence.npy +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/support_points_for_smoothpar_logistic2.npy +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/config.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/exceptiontools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/hydpytools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/optiontools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/printtools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/pubtools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/annutils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/annutils.pyi +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/annutils.pyx +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/configutils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/configutils.pyx +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/interputils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/pointerutils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/pointerutils.pyi +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/ppolyutils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/ppolyutils.pyi +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/ppolyutils.pyx +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/quadutils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/quadutils.pyx +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/rootutils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/rootutils.pyx +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/sequenceutils.pyi +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/sequenceutils.pyx +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/smoothutils.pxd +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/smoothutils.pyi +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/smoothutils.pyx +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_dill.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_lahn_1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_lahn_2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_lahn_3.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/stream_dill_lahn_2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/stream_lahn_1_lahn_2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/stream_lahn_2_lahn_3.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_dill.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_lahn_1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_lahn_2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_lahn_3.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/stream_dill_lahn_2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/stream_lahn_1_lahn_2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/stream_lahn_2_lahn_3.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/multiple_runs.xml +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/multiple_runs_alpha.xml +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/network/default/headwaters.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/network/default/nonheadwaters.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/network/default/streams.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_epn.nc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_p.nc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_t.nc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_tn.nc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_epn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_p.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_t.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_tn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_epn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_p.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_t.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_tn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_epn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_p.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_t.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_tn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_epn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_p.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_t.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_tn.asc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/single_run.xml +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/single_run.xmlt +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/autofigs/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/bib/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/bib/refs.bib +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/enable_autodoc.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-1.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-2.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-3.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-4.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-L-Land_Version-1.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-L-Stream_Version-1.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-W-Land_Version-1.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy_Logo.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy_Logo_Text.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/LAWA_river-basin-bumbers.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/LahnH.png +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/html_/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/publish_docs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-D.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Exch.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-H.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-L.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Musk.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/additional_repositories.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/auxiliaries.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/configuration.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/continuous_integration.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/core.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/cythons.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/development.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/execution.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/framework.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/how_to.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/hydpydependencies.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/modelcollection.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/modelimports.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/quickstart.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/required_tools.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/tests_and_documentation.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/version_control.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/zbibliography.rst +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/apidoc.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/defaultlinks_extension.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/integrationtest_extension.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/hyd.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/modelimports.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/replacetools.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/inputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_logs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma_v1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv_v001.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv_v002.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv_v003.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_aides.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_factors.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_inputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_logs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_receivers.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_senders.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_solver.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v001.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v002.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v003.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v004.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v005.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v006.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v007.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v008.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy_v1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_factors.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_inputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_logs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap_v001.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_factors.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_logs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_receivers.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch_v001.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch_v1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_aides.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_constants.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_factors.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_fixed.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_inputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_logs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_masks.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_parameters.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_sequences.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v3.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v4.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_aides.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake_v1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_aides.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_constants.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_fixed.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_inputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_logs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_parameters.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_sequences.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v3.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v4.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_aides.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_fixed.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_solver.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream_v001.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream_v002.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_factors.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_fixed.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_inputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_logs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v001.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v002.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v003.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v004.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_factors.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_inlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_masks.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_parameters.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_sequences.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_solver.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk_classic.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk_mct.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_solver.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test_v1.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test_v2.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test_v3.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_aides.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_constants.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_control.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_derived.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_fixed.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_fluxes.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_inputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_masks.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_model.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_outlets.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_parameters.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_solver.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_states.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland_v001.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland_v002.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/outputs.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/py.typed +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/.coveragerc +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/check_consistency.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/hydpydoctestcustomize.pth +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/hydpydoctestcustomize.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/iotesting/__init__.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/run_doctests.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/logo.ico +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/make_and_install_dists.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/prepare_hydpy_installer.py +0 -0
- {HydPy-5.0.1 → HydPy-5.0.3}/setup.cfg +0 -0
|
@@ -2,13 +2,12 @@ language: python
|
|
|
2
2
|
|
|
3
3
|
os: linux
|
|
4
4
|
|
|
5
|
-
dist:
|
|
5
|
+
dist: jammy
|
|
6
6
|
|
|
7
7
|
matrix:
|
|
8
8
|
include:
|
|
9
9
|
- python: 3.8
|
|
10
|
-
- python: 3.
|
|
11
|
-
- python: 3.10
|
|
10
|
+
- python: 3.11
|
|
12
11
|
|
|
13
12
|
install:
|
|
14
13
|
- pip install --upgrade pip virtualenv
|
|
@@ -17,12 +16,13 @@ install:
|
|
|
17
16
|
script:
|
|
18
17
|
- python prepare_build.py
|
|
19
18
|
- python -m build
|
|
20
|
-
- if [ $TRAVIS_PYTHON_VERSION == "3.8" ] ; then
|
|
21
|
-
- if [ $TRAVIS_PYTHON_VERSION == "3.
|
|
22
|
-
- if [ $TRAVIS_PYTHON_VERSION == "3.
|
|
23
|
-
- if [ $TRAVIS_PYTHON_VERSION == "3.
|
|
24
|
-
- if [ $TRAVIS_PYTHON_VERSION == "3.
|
|
25
|
-
- if [ $TRAVIS_PYTHON_VERSION == "3.
|
|
19
|
+
- if [ $TRAVIS_PYTHON_VERSION == "3.8" ] ; then nox -s doctest; fi
|
|
20
|
+
- if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then pip install ghp-import; fi
|
|
21
|
+
- if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s sphinx; fi
|
|
22
|
+
- if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s black; fi
|
|
23
|
+
- if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s pylint; fi
|
|
24
|
+
- if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s check_consistency; fi
|
|
25
|
+
- if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then python hydpy/docs/combine_docversions.py ; fi
|
|
26
26
|
|
|
27
27
|
env:
|
|
28
28
|
global:
|
|
@@ -30,4 +30,4 @@ env:
|
|
|
30
30
|
- secure: KkDNiyCWcOtSMHzwmR7WuUM9Z08sigox9fgiRaWtdDTNHGHbNRXCf6Rzr32QlThqu9SwwPd5VnEJkontzrG9uTL2rlEzCKJHp4Ncq0lmCBhOJEM7favpIGwjnWQt4kZZ+G/sy9rfV6rshiOMN2rHRkt1gYzRmHTPCEQQ5eVIb7/YnFO+Gc77FGgkqWJXTfYczUMHNL5F3pfdSUbnnsDoqq3dxZ+NtdY6R87+IOT9fclrsL8zcodJC8N2oyGeTfhRcrZESneVcR/NEx6KhVC8A9/8bWK7kc8cYB6ieLo31uU+Ht7UvDzXmXfZrA8FoRbiDaJ3ktW9RQ7BR0GKGyQm/y/bLUrR7Yo2AXLPrF1DvBt8DYvcnMkJ1sNOrJI+oOpfi7AfdxVJnGbWa8w4D5B6EJSCvQwOj1REXgOf8+VrOKUqZMxPCCDDOhKPSx3/9ng7NAT+yRk7pLqKVtJEEszYs2/wK8hask4JMaz9H06b+Dy5nHnr4RQffXPPwAArSZZdu9IC3/38Lqnk+HhUWZLbKnBMd8UdRbDdZ5aFAkK7ZLseiDaAzCE31FscQbNmwpUPgfxgz/ApWZSV/WHlVZvaNBPkK0DTk5b9iW3WeLOC+qXGYzBKTUHIFQbCKEh40P0pTeDlp0sK3bWnT0VPEXJhk0jEN60RrlB9lwLdSzJg4Gs=
|
|
31
31
|
|
|
32
32
|
after_success:
|
|
33
|
-
- if [[ $TRAVIS_PYTHON_VERSION == "3.
|
|
33
|
+
- if [[ $TRAVIS_PYTHON_VERSION == "3.11" ]]; then python publish_docs_copy.py ; fi
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: HydPy
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.3
|
|
4
4
|
Summary: A framework for the development and application of hydrological models.
|
|
5
5
|
Home-page: https://github.com/hydpy-dev/hydpy
|
|
6
6
|
Author: HydPy Developers
|
|
@@ -13,15 +13,28 @@ Classifier: Intended Audience :: Science/Research
|
|
|
13
13
|
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
|
14
14
|
Classifier: Operating System :: POSIX :: Linux
|
|
15
15
|
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.8
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.9
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering
|
|
22
|
-
Requires-Python: >=3.
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: licenses_hydpy_installer.txt
|
|
25
|
+
Requires-Dist: black
|
|
26
|
+
Requires-Dist: click
|
|
27
|
+
Requires-Dist: matplotlib
|
|
28
|
+
Requires-Dist: netcdf4
|
|
29
|
+
Requires-Dist: networkx
|
|
30
|
+
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: pandas
|
|
32
|
+
Requires-Dist: plotly
|
|
33
|
+
Requires-Dist: scipy
|
|
34
|
+
Requires-Dist: setuptools
|
|
35
|
+
Requires-Dist: typing_extensions
|
|
36
|
+
Requires-Dist: wrapt
|
|
37
|
+
Requires-Dist: xmlschema
|
|
25
38
|
|
|
26
39
|
.. _`online documentation`: https://hydpy-dev.github.io/hydpy/
|
|
27
40
|
.. _Python: http://www.python.org/
|
|
@@ -67,10 +80,10 @@ License-File: licenses_hydpy_installer.txt
|
|
|
67
80
|
|
|
68
81
|
\
|
|
69
82
|
|
|
70
|
-
.. image:: https://img.shields.io/travis/hydpy-dev/hydpy/master?label=Travis%20master
|
|
83
|
+
.. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy/master?label=Travis%20master
|
|
71
84
|
:alt: Travis master
|
|
72
85
|
:target: https://app.travis-ci.com/github/hydpy-dev/hydpy/branches
|
|
73
|
-
.. image:: https://img.shields.io/travis/hydpy-dev/hydpy?label=latest
|
|
86
|
+
.. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy?label=latest
|
|
74
87
|
:alt: Travis latest
|
|
75
88
|
:target: https://app.travis-ci.com/hydpy-dev/hydpy
|
|
76
89
|
|
|
@@ -276,6 +276,38 @@ hydpy/docs/sphinx/apidoc.py
|
|
|
276
276
|
hydpy/docs/sphinx/conf.py
|
|
277
277
|
hydpy/docs/sphinx/defaultlinks_extension.py
|
|
278
278
|
hydpy/docs/sphinx/integrationtest_extension.py
|
|
279
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/defindex.html
|
|
280
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/domainindex.html
|
|
281
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/genindex-single.html
|
|
282
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/genindex-split.html
|
|
283
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/genindex.html
|
|
284
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/globaltoc.html
|
|
285
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/layout.html
|
|
286
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/localtoc.html
|
|
287
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/opensearch.xml
|
|
288
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/page.html
|
|
289
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/relations.html
|
|
290
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/search.html
|
|
291
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/searchbox.html
|
|
292
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/searchfield.html
|
|
293
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/sourcelink.html
|
|
294
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/theme.conf
|
|
295
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/changes/frameset.html
|
|
296
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/changes/rstsource.html
|
|
297
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/changes/versionchanges.html
|
|
298
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/basic.css_t
|
|
299
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/doctools.js
|
|
300
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/documentation_options.js_t
|
|
301
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/file.png
|
|
302
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/language_data.js_t
|
|
303
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/minus.png
|
|
304
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/plus.png
|
|
305
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/searchtools.js
|
|
306
|
+
hydpy/docs/sphinx/_themes/basic_hydpy/static/sphinx_highlight.js
|
|
307
|
+
hydpy/docs/sphinx/_themes/classic_hydpy/layout.html
|
|
308
|
+
hydpy/docs/sphinx/_themes/classic_hydpy/theme.conf
|
|
309
|
+
hydpy/docs/sphinx/_themes/classic_hydpy/static/classic.css_t
|
|
310
|
+
hydpy/docs/sphinx/_themes/classic_hydpy/static/sidebar.js_t
|
|
279
311
|
hydpy/exe/__init__.py
|
|
280
312
|
hydpy/exe/commandtools.py
|
|
281
313
|
hydpy/exe/hyd.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: HydPy
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.3
|
|
4
4
|
Summary: A framework for the development and application of hydrological models.
|
|
5
5
|
Home-page: https://github.com/hydpy-dev/hydpy
|
|
6
6
|
Author: HydPy Developers
|
|
@@ -13,15 +13,28 @@ Classifier: Intended Audience :: Science/Research
|
|
|
13
13
|
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
|
14
14
|
Classifier: Operating System :: POSIX :: Linux
|
|
15
15
|
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.8
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.9
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering
|
|
22
|
-
Requires-Python: >=3.
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: licenses_hydpy_installer.txt
|
|
25
|
+
Requires-Dist: black
|
|
26
|
+
Requires-Dist: click
|
|
27
|
+
Requires-Dist: matplotlib
|
|
28
|
+
Requires-Dist: netcdf4
|
|
29
|
+
Requires-Dist: networkx
|
|
30
|
+
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: pandas
|
|
32
|
+
Requires-Dist: plotly
|
|
33
|
+
Requires-Dist: scipy
|
|
34
|
+
Requires-Dist: setuptools
|
|
35
|
+
Requires-Dist: typing_extensions
|
|
36
|
+
Requires-Dist: wrapt
|
|
37
|
+
Requires-Dist: xmlschema
|
|
25
38
|
|
|
26
39
|
.. _`online documentation`: https://hydpy-dev.github.io/hydpy/
|
|
27
40
|
.. _Python: http://www.python.org/
|
|
@@ -67,10 +80,10 @@ License-File: licenses_hydpy_installer.txt
|
|
|
67
80
|
|
|
68
81
|
\
|
|
69
82
|
|
|
70
|
-
.. image:: https://img.shields.io/travis/hydpy-dev/hydpy/master?label=Travis%20master
|
|
83
|
+
.. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy/master?label=Travis%20master
|
|
71
84
|
:alt: Travis master
|
|
72
85
|
:target: https://app.travis-ci.com/github/hydpy-dev/hydpy/branches
|
|
73
|
-
.. image:: https://img.shields.io/travis/hydpy-dev/hydpy?label=latest
|
|
86
|
+
.. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy?label=latest
|
|
74
87
|
:alt: Travis latest
|
|
75
88
|
:target: https://app.travis-ci.com/hydpy-dev/hydpy
|
|
76
89
|
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
|
|
43
43
|
\
|
|
44
44
|
|
|
45
|
-
.. image:: https://img.shields.io/travis/hydpy-dev/hydpy/master?label=Travis%20master
|
|
45
|
+
.. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy/master?label=Travis%20master
|
|
46
46
|
:alt: Travis master
|
|
47
47
|
:target: https://app.travis-ci.com/github/hydpy-dev/hydpy/branches
|
|
48
|
-
.. image:: https://img.shields.io/travis/hydpy-dev/hydpy?label=latest
|
|
48
|
+
.. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy?label=latest
|
|
49
49
|
:alt: Travis latest
|
|
50
50
|
:target: https://app.travis-ci.com/hydpy-dev/hydpy
|
|
51
51
|
|
|
@@ -1,34 +1,32 @@
|
|
|
1
1
|
|
|
2
|
-
version: 5.0.
|
|
2
|
+
version: 5.0.3.{build}
|
|
3
3
|
|
|
4
4
|
image: Visual Studio 2019
|
|
5
5
|
|
|
6
6
|
environment:
|
|
7
|
-
|
|
8
|
-
secure:
|
|
7
|
+
TokenPyPI:
|
|
8
|
+
secure: kkjz662y19aSdDHa+tqlBLsUfJ6VUSNlU4zKumcZYBwCV2RS3CTK9FtxQKGm/OveW0PCY4i80ctDmWH0mCr5TstHTyr0JRs2p61X0skiqRFYj6l0PoR8n2GaMKntWPwILRKUvueYCzDLTIDGGHa2GNWHTAznrYs+nNSu+95zsLmroY1RY4NnhTPrL9RgiPNPT2EbMVmb7dLYAaMgEHqXveU3yRcpNsguuESChBSJOQROQE77JktPpykzSLJGP23c
|
|
9
9
|
matrix:
|
|
10
|
-
- PYTHON: "C:\\
|
|
10
|
+
- PYTHON: "C:\\Python38-x64"
|
|
11
11
|
make_exe: false
|
|
12
12
|
python_mode: false
|
|
13
13
|
cython_mode: true
|
|
14
|
-
- PYTHON: "C:\\
|
|
14
|
+
- PYTHON: "C:\\Python39-x64"
|
|
15
15
|
make_exe: false
|
|
16
16
|
python_mode: true
|
|
17
17
|
cython_mode: false
|
|
18
|
-
- PYTHON: "C:\\Python39-x64"
|
|
19
|
-
make_exe: true
|
|
20
|
-
python_mode: false
|
|
21
|
-
cython_mode: false
|
|
22
18
|
- PYTHON: "C:\\Python310-x64"
|
|
23
19
|
make_exe: false
|
|
24
20
|
python_mode: false
|
|
25
21
|
cython_mode: true
|
|
22
|
+
- PYTHON: "C:\\Python311-x64"
|
|
23
|
+
make_exe: true
|
|
24
|
+
python_mode: false
|
|
25
|
+
cython_mode: false
|
|
26
26
|
|
|
27
27
|
install:
|
|
28
|
-
|
|
29
|
-
-
|
|
30
|
-
- ps: nsis-3.05-setup.exe /S
|
|
31
|
-
- SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
|
|
28
|
+
- cinst nsis
|
|
29
|
+
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
|
|
32
30
|
- python -m pip install --upgrade pip
|
|
33
31
|
- python -m pip install -r requirements.txt
|
|
34
32
|
- if %make_exe%==true python -m pip install pynsist
|
|
@@ -47,13 +45,14 @@ before_test:
|
|
|
47
45
|
test_script:
|
|
48
46
|
- if %make_exe%==false nox -s doctest -- --python-mode=%python_mode% --cython-mode=%cython_mode%
|
|
49
47
|
- if %make_exe%==true rename hydpy _hydpy
|
|
50
|
-
- if %make_exe%==true
|
|
51
|
-
- if %make_exe%==true
|
|
48
|
+
- if %make_exe%==true python call_installer.py
|
|
49
|
+
- if %make_exe%==true set PATH=C:/Users\appveyor\AppData\Local\Programs\HydPy\bin;%PATH%
|
|
50
|
+
- if %make_exe%==true C:/Users\appveyor\AppData\Local\Programs\HydPy\bin\hyd.py.exe run_doctests
|
|
52
51
|
|
|
53
52
|
after_test:
|
|
54
53
|
- "echo [pypi] > %USERPROFILE%\\.pypirc"
|
|
55
|
-
- "echo username:
|
|
56
|
-
- "echo password: %
|
|
54
|
+
- "echo username: __token__ >> %USERPROFILE%\\.pypirc"
|
|
55
|
+
- "echo password: %TokenPyPI% >> %USERPROFILE%\\.pypirc"
|
|
57
56
|
- ps: if ($env:APPVEYOR_REPO_TAG -eq "true") { Invoke-Expression "twine upload --skip-existing dist/*"} else { write-output "No tag, no deploy"}
|
|
58
57
|
|
|
59
58
|
artifacts:
|
|
@@ -68,7 +67,7 @@ deploy:
|
|
|
68
67
|
description: 'This is a draft.'
|
|
69
68
|
provider: GitHub
|
|
70
69
|
auth_token:
|
|
71
|
-
secure:
|
|
70
|
+
secure: jj6p/HAFU0awcS+uR2555necfI0pwGewxp8CSm78s/Cg6/nzRNe1fsZKRRiE1lU+
|
|
72
71
|
artifact: Packages,Installer,XSDs
|
|
73
72
|
draft: true
|
|
74
73
|
prerelease: false
|
|
@@ -14,6 +14,7 @@ import numpy
|
|
|
14
14
|
import hydpy
|
|
15
15
|
from hydpy.core import exceptiontools
|
|
16
16
|
from hydpy.core import objecttools
|
|
17
|
+
from hydpy.core import propertytools
|
|
17
18
|
from hydpy.auxs import statstools
|
|
18
19
|
from hydpy.core.typingtools import *
|
|
19
20
|
|
|
@@ -328,7 +329,7 @@ check the calculated coefficients: 1.0.
|
|
|
328
329
|
class ARMA:
|
|
329
330
|
"""Autoregressive-Moving Average model.
|
|
330
331
|
|
|
331
|
-
One can
|
|
332
|
+
One can set all ARMA coefficients manually:
|
|
332
333
|
|
|
333
334
|
>>> from hydpy import MA, ARMA
|
|
334
335
|
>>> arma = ARMA(ar_coefs=(0.5,), ma_coefs=(0.3, 0.2))
|
|
@@ -434,11 +435,11 @@ class ARMA:
|
|
|
434
435
|
|
|
435
436
|
>>> arma.max_rel_rmse = 1e-2
|
|
436
437
|
>>> arma.max_dev_coefs = 1e-2
|
|
437
|
-
>>>
|
|
438
|
-
|
|
439
|
-
...
|
|
438
|
+
>>> from hydpy.core.testtools import warn_later
|
|
439
|
+
>>> with warn_later():
|
|
440
|
+
... arma.update_coefs()
|
|
440
441
|
UserWarning: Note that the smallest response to a standard impulse of the \
|
|
441
|
-
determined ARMA model is negative (`-0.
|
|
442
|
+
determined ARMA model is negative (`-0.000336`).
|
|
442
443
|
>>> arma
|
|
443
444
|
ARMA(ar_coefs=(0.736954, -0.166457),
|
|
444
445
|
ma_coefs=(0.01946, 0.05418, 0.077804, 0.098741, 0.091295,
|
|
@@ -498,13 +499,13 @@ of `0.0` has been reached using `10` coefficients.
|
|
|
498
499
|
>>> arma.update_coefs()
|
|
499
500
|
Traceback (most recent call last):
|
|
500
501
|
...
|
|
501
|
-
UserWarning: Not able to detect a turning point in the impulse response defined
|
|
502
|
-
the MA coefficients `1.0, 1.0, 1.0`.
|
|
502
|
+
UserWarning: Not able to detect a turning point in the impulse response defined \
|
|
503
|
+
by the MA coefficients `1.0, 1.0, 1.0`.
|
|
503
504
|
|
|
504
505
|
When getting such warnings, you need to inspect the achieved coefficients manually.
|
|
505
506
|
In the last case, when the turning point detection failed, method
|
|
506
|
-
|ARMA.update_coefs| simplified the ARMA to the original MA model, which is
|
|
507
|
-
|
|
507
|
+
|ARMA.update_coefs| simplified the ARMA to the original MA model, which is safe but
|
|
508
|
+
not always a good choice:
|
|
508
509
|
|
|
509
510
|
>>> import warnings
|
|
510
511
|
>>> with warnings.catch_warnings():
|
|
@@ -512,7 +513,7 @@ the MA coefficients `1.0, 1.0, 1.0`.
|
|
|
512
513
|
... arma.update_coefs()
|
|
513
514
|
>>> arma
|
|
514
515
|
ARMA(ar_coefs=(),
|
|
515
|
-
ma_coefs=(
|
|
516
|
+
ma_coefs=(0.333333, 0.333333, 0.333333))
|
|
516
517
|
"""
|
|
517
518
|
|
|
518
519
|
max_ar_order: int = 10
|
|
@@ -541,39 +542,104 @@ the MA coefficients `1.0, 1.0, 1.0`.
|
|
|
541
542
|
@property
|
|
542
543
|
def rel_rmse(self) -> float:
|
|
543
544
|
"""Relative root mean squared error the last time achieved by method
|
|
544
|
-
|ARMA.update_coefs|.
|
|
545
|
-
|
|
545
|
+
|ARMA.update_coefs|.
|
|
546
|
+
|
|
547
|
+
>>> from hydpy.auxs.armatools import ARMA
|
|
548
|
+
>>> ARMA().rel_rmse
|
|
549
|
+
Traceback (most recent call last):
|
|
550
|
+
...
|
|
551
|
+
RuntimeError: The relative root mean squared error has not been determined so \
|
|
552
|
+
far.
|
|
553
|
+
"""
|
|
554
|
+
if (rel_rmse := self._rel_rmse) is None:
|
|
555
|
+
raise RuntimeError(
|
|
556
|
+
"The relative root mean squared error has not been determined so far."
|
|
557
|
+
)
|
|
558
|
+
return rel_rmse
|
|
559
|
+
|
|
560
|
+
def _get_ar_coefs(self) -> Vector[float]:
|
|
561
|
+
"""The AR coefficients of the ARMA model.
|
|
562
|
+
|
|
563
|
+
|property| |ARMA.ar_coefs| does not recalculate already defined coefficients
|
|
564
|
+
automatically for efficiency:
|
|
565
|
+
|
|
566
|
+
>>> from hydpy import MA, ARMA, print_values
|
|
567
|
+
>>> arma = ARMA(ar_coefs=(0.5,), ma_coefs=(0.3, 0.2))
|
|
568
|
+
>>> from scipy import stats
|
|
569
|
+
>>> arma.ma = MA(iuh=lambda x: 1.02328 * stats.norm.pdf(x, 4.0, 2.0))
|
|
570
|
+
>>> arma.ma.iuh.moment1 = 3.94
|
|
571
|
+
>>> print_values(arma.ar_coefs)
|
|
572
|
+
0.5
|
|
573
|
+
|
|
574
|
+
You can trigger the recalculation by removing the available coefficients first:
|
|
575
|
+
|
|
576
|
+
>>> del arma.ar_coefs
|
|
577
|
+
>>> print_values(arma.ar_coefs)
|
|
578
|
+
0.680483, -0.228511, 0.047283, -0.006022, 0.000377
|
|
579
|
+
>>> arma
|
|
580
|
+
ARMA(ar_coefs=(0.680483, -0.228511, 0.047283, -0.006022, 0.000377),
|
|
581
|
+
ma_coefs=(0.019322, 0.054783, 0.08195, 0.107757, 0.104458,
|
|
582
|
+
0.07637, 0.041095, 0.01581, 0.004132, 0.000663,
|
|
583
|
+
0.00005))
|
|
584
|
+
"""
|
|
585
|
+
if (ar_coefs := self._ar_coefs) is not None:
|
|
586
|
+
return ar_coefs
|
|
587
|
+
self.update_coefs()
|
|
588
|
+
assert (ar_coefs := self._ar_coefs) is not None
|
|
589
|
+
return ar_coefs
|
|
546
590
|
|
|
547
|
-
|
|
548
|
-
def ar_coefs(self) -> Vector[float]:
|
|
549
|
-
"""The AR coefficients of the AR model."""
|
|
550
|
-
if self._ar_coefs is None:
|
|
551
|
-
self.update_ar_coefs()
|
|
552
|
-
return self._ar_coefs
|
|
553
|
-
|
|
554
|
-
@ar_coefs.setter
|
|
555
|
-
def ar_coefs(self, values) -> None:
|
|
591
|
+
def _set_ar_coefs(self, values) -> None:
|
|
556
592
|
self._ar_coefs = numpy.array(values, ndmin=1, dtype=float)
|
|
557
593
|
|
|
558
|
-
|
|
559
|
-
def ar_coefs(self) -> None:
|
|
594
|
+
def _del_ar_coefs(self) -> None:
|
|
560
595
|
self._ar_coefs = None
|
|
561
596
|
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
597
|
+
ar_coefs = propertytools.Property(
|
|
598
|
+
fget=_get_ar_coefs, fset=_set_ar_coefs, fdel=_del_ar_coefs
|
|
599
|
+
)
|
|
600
|
+
|
|
601
|
+
def _get_ma_coefs(self) -> Vector[float]:
|
|
602
|
+
"""The MA coefficients of the ARMA model.
|
|
603
|
+
|
|
604
|
+
|property| |ARMA.ma_coefs| does not recalculate already defined coefficients
|
|
605
|
+
automatically for efficiency:
|
|
606
|
+
|
|
607
|
+
>>> from hydpy import MA, ARMA, print_values
|
|
608
|
+
>>> arma = ARMA(ar_coefs=(0.5,), ma_coefs=(0.3, 0.2))
|
|
609
|
+
>>> from scipy import stats
|
|
610
|
+
>>> arma.ma = MA(iuh=lambda x: 1.02328 * stats.norm.pdf(x, 4.0, 2.0))
|
|
611
|
+
>>> arma.ma.iuh.moment1 = 3.94
|
|
612
|
+
>>> print_values(arma.ma_coefs)
|
|
613
|
+
0.3, 0.2
|
|
614
|
+
|
|
615
|
+
You can trigger the recalculation by removing the available coefficients first:
|
|
616
|
+
|
|
617
|
+
>>> del arma.ma_coefs
|
|
618
|
+
>>> print_values(arma.ma_coefs)
|
|
619
|
+
0.019322, 0.054783, 0.08195, 0.107757, 0.104458, 0.07637, 0.041095,
|
|
620
|
+
0.01581, 0.004132, 0.000663, 0.00005
|
|
621
|
+
>>> arma
|
|
622
|
+
ARMA(ar_coefs=(0.680483, -0.228511, 0.047283, -0.006022, 0.000377),
|
|
623
|
+
ma_coefs=(0.019322, 0.054783, 0.08195, 0.107757, 0.104458,
|
|
624
|
+
0.07637, 0.041095, 0.01581, 0.004132, 0.000663,
|
|
625
|
+
0.00005))
|
|
626
|
+
"""
|
|
627
|
+
if (ma_coefs := self._ma_coefs) is not None:
|
|
628
|
+
return ma_coefs
|
|
629
|
+
self.update_coefs()
|
|
630
|
+
assert (ma_coefs := self._ma_coefs) is not None
|
|
631
|
+
return ma_coefs
|
|
632
|
+
|
|
633
|
+
def _set_ma_coefs(self, values) -> None:
|
|
571
634
|
self._ma_coefs = numpy.array(values, ndmin=1, dtype=float)
|
|
572
635
|
|
|
573
|
-
|
|
574
|
-
def ma_coefs(self) -> None:
|
|
636
|
+
def _del_ma_coefs(self) -> None:
|
|
575
637
|
self._ma_coefs = None
|
|
576
638
|
|
|
639
|
+
ma_coefs = propertytools.Property(
|
|
640
|
+
fget=_get_ma_coefs, fset=_set_ma_coefs, fdel=_del_ma_coefs
|
|
641
|
+
)
|
|
642
|
+
|
|
577
643
|
@property
|
|
578
644
|
def coefs(self) -> Tuple[Vector[float], Vector[float]]:
|
|
579
645
|
"""Tuple containing both the AR and the MA coefficients."""
|
|
@@ -598,6 +664,7 @@ the MA coefficients `1.0, 1.0, 1.0`.
|
|
|
598
664
|
"""Determine both the AR and the MA coefficients."""
|
|
599
665
|
self.update_ar_coefs()
|
|
600
666
|
self.update_ma_coefs()
|
|
667
|
+
self.norm_coefs()
|
|
601
668
|
|
|
602
669
|
@property
|
|
603
670
|
def effective_max_ar_order(self) -> int:
|
|
@@ -630,7 +697,7 @@ the MA coefficients `1.0, 1.0, 1.0`.
|
|
|
630
697
|
if self._rel_rmse < self.max_rel_rmse:
|
|
631
698
|
break
|
|
632
699
|
else:
|
|
633
|
-
with hydpy.pub.options.reprdigits(12):
|
|
700
|
+
with hydpy.pub.options.reprdigits(12):
|
|
634
701
|
warnings.warn(
|
|
635
702
|
f"Method `update_ar_coefs` is not able to determine "
|
|
636
703
|
f"the AR coefficients of the ARMA model with the desired "
|
|
@@ -719,10 +786,9 @@ the MA coefficients `1.0, 1.0, 1.0`.
|
|
|
719
786
|
for ma_order in range(1, self.ma.order + 1):
|
|
720
787
|
self.calc_next_ma_coef(ma_order, self.ma)
|
|
721
788
|
if self.dev_coefs < self.max_dev_coefs:
|
|
722
|
-
self.norm_coefs()
|
|
723
789
|
break
|
|
724
790
|
else:
|
|
725
|
-
with hydpy.pub.options.reprdigits(12):
|
|
791
|
+
with hydpy.pub.options.reprdigits(12):
|
|
726
792
|
warnings.warn(
|
|
727
793
|
f"Method `update_ma_coefs` is not able to determine the "
|
|
728
794
|
f"MA coefficients of the ARMA model with the desired "
|
|
@@ -15,8 +15,6 @@ import types
|
|
|
15
15
|
import warnings
|
|
16
16
|
from typing import *
|
|
17
17
|
from typing import TextIO
|
|
18
|
-
from typing_extensions import Literal # type: ignore[misc]
|
|
19
|
-
from typing_extensions import Protocol # type: ignore[misc]
|
|
20
18
|
|
|
21
19
|
# ...from site-packages
|
|
22
20
|
import black
|
|
@@ -34,9 +32,11 @@ from hydpy.core import selectiontools
|
|
|
34
32
|
from hydpy.core import timetools
|
|
35
33
|
from hydpy.core import variabletools
|
|
36
34
|
from hydpy.auxs import iuhtools
|
|
37
|
-
from hydpy.models.arma import arma_control
|
|
38
35
|
from hydpy.core.typingtools import *
|
|
39
36
|
|
|
37
|
+
if TYPE_CHECKING:
|
|
38
|
+
from hydpy.models.arma import arma_control
|
|
39
|
+
|
|
40
40
|
TypeParameter = TypeVar("TypeParameter", bound=parametertools.Parameter)
|
|
41
41
|
TypeRule1 = TypeVar(
|
|
42
42
|
"TypeRule1",
|
|
@@ -807,10 +807,10 @@ class Replace(Rule[parametertools.Parameter]):
|
|
|
807
807
|
See the documentation on class |Rule| for further information.
|
|
808
808
|
"""
|
|
809
809
|
opt = hydpy.pub.options
|
|
810
|
-
with opt.parameterstep(self.parameterstep):
|
|
810
|
+
with opt.parameterstep(self.parameterstep):
|
|
811
811
|
for parameter in self:
|
|
812
812
|
if self.adaptor:
|
|
813
|
-
self.adaptor(parameter)
|
|
813
|
+
self.adaptor(parameter)
|
|
814
814
|
else:
|
|
815
815
|
self._update_parameter(parameter, self.value)
|
|
816
816
|
|
|
@@ -2197,7 +2197,7 @@ parameterstep="1d"))
|
|
|
2197
2197
|
return cast(List[str], super().__dir__()) + list(self._rules.keys())
|
|
2198
2198
|
|
|
2199
2199
|
|
|
2200
|
-
class RuleIUH(Rule[arma_control.Responses]):
|
|
2200
|
+
class RuleIUH(Rule["arma_control.Responses"]):
|
|
2201
2201
|
"""A |Rule|, class specialised for |IUH| parameters.
|
|
2202
2202
|
|
|
2203
2203
|
|RuleIUH| serves as a base class only. Please see the concrete implementation
|
|
@@ -99,10 +99,10 @@ class InterpAlgorithm(abc.ABC, _Labeled):
|
|
|
99
99
|
"""Process the given input data and print the interpolated output values as
|
|
100
100
|
well as all partial first-order derivatives.
|
|
101
101
|
|
|
102
|
-
The documentation on class |PPoly| includes some examples
|
|
103
|
-
univariate interpolator. Here, we take up some
|
|
104
|
-
|
|
105
|
-
|
|
102
|
+
The documentation on class |PPoly| includes some examples of a strictly
|
|
103
|
+
univariate interpolator. Here, we take up some examples discussed for class
|
|
104
|
+
|ANN| to show that method |InterpAlgorithm.print_table| also correctly reports
|
|
105
|
+
all outputs and derivatives for multivariate interpolators.
|
|
106
106
|
|
|
107
107
|
A single-input single-output example:
|
|
108
108
|
|
|
@@ -235,7 +235,7 @@ class BaseInterpolator(_Labeled):
|
|
|
235
235
|
SPAN = (None, None)
|
|
236
236
|
|
|
237
237
|
name: str
|
|
238
|
-
"""Class name in
|
|
238
|
+
"""Class name in lowercase letters."""
|
|
239
239
|
subvars: parametertools.SubParameters
|
|
240
240
|
"""The |SubParameters| object containing the current |BaseInterpolator| object."""
|
|
241
241
|
subpars: parametertools.SubParameters
|
|
@@ -508,46 +508,24 @@ class SeasonalInterpolator(BaseInterpolator):
|
|
|
508
508
|
>>> seasonalinterpolator.shape
|
|
509
509
|
(366, 3)
|
|
510
510
|
|
|
511
|
-
The following
|
|
512
|
-
|
|
513
|
-
|
|
511
|
+
The following plot shows the |SeasonalInterpolator.ratios| used for weighting (note
|
|
512
|
+
that the missing values for October, November, and December are irrelevant for the
|
|
513
|
+
initialisation period):
|
|
514
514
|
|
|
515
515
|
.. testsetup::
|
|
516
516
|
|
|
517
|
-
>>> from
|
|
518
|
-
>>> from hydpy import
|
|
517
|
+
>>> from matplotlib import pyplot
|
|
518
|
+
>>> from hydpy.docs import autofigs
|
|
519
519
|
>>> import os
|
|
520
|
-
>>>
|
|
521
|
-
...
|
|
522
|
-
>>>
|
|
523
|
-
>>>
|
|
524
|
-
|
|
525
|
-
>>>
|
|
526
|
-
>>>
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
... line = plot.line(range(366), seasonalinterpolator.ratios[:, idx],
|
|
530
|
-
... alpha=0.8, muted_alpha=0.2, color=color)
|
|
531
|
-
... line.muted = True
|
|
532
|
-
... legend_entries.append((str(toy), [line]))
|
|
533
|
-
>>> legend = models.Legend(items=legend_entries,
|
|
534
|
-
... location=(10, 0),
|
|
535
|
-
... click_policy="mute")
|
|
536
|
-
>>> plot.add_layout(legend, "right")
|
|
537
|
-
>>> label_dict = {0: "Jan 1", 60: "Mar 1", 182: "Jul 1"}
|
|
538
|
-
>>> plot.xaxis.ticker = sorted(label_dict.keys())
|
|
539
|
-
>>> plot.xaxis.formatter = models.FuncTickFormatter(
|
|
540
|
-
... code=f"var labels = {label_dict}; return labels[tick];")
|
|
541
|
-
>>> dummy = plotting.save(plot)
|
|
542
|
-
|
|
543
|
-
.. raw:: html
|
|
544
|
-
|
|
545
|
-
<iframe
|
|
546
|
-
src="anntools.SeasonalInterpolator.ratios.html"
|
|
547
|
-
width="100%"
|
|
548
|
-
height="300px"
|
|
549
|
-
frameborder=0
|
|
550
|
-
></iframe>
|
|
520
|
+
>>> for idx, toy in enumerate(seasonalinterpolator.toys):
|
|
521
|
+
... _ = pyplot.plot(seasonalinterpolator.ratios[:, idx], label=str(toy))
|
|
522
|
+
>>> _ = pyplot.legend()
|
|
523
|
+
>>> _ = pyplot.xticks(ticks=[0, 60, 182], labels=["Jan 1", "Mar 1", "Jul 1"])
|
|
524
|
+
>>> filename = "SeasonalInterpolator_ratios.png"
|
|
525
|
+
>>> pyplot.savefig(os.path.join(autofigs.__path__[0], filename))
|
|
526
|
+
>>> pyplot.clf()
|
|
527
|
+
|
|
528
|
+
... image:: SeasonalInterpolator_ratios.png
|
|
551
529
|
|
|
552
530
|
For example, on July 1 (which is the 183rd day of a leap year), only the output of
|
|
553
531
|
the third interpolator is relevant:
|
|
@@ -764,7 +742,7 @@ error occurred: Value `1` of type `int` has been given, but an object of type \
|
|
|
764
742
|
)
|
|
765
743
|
if algorithm:
|
|
766
744
|
algorithms["_1"] = algorithm[0]
|
|
767
|
-
for
|
|
745
|
+
for toystr, value in algorithms.items():
|
|
768
746
|
if not isinstance(value, InterpAlgorithm):
|
|
769
747
|
raise TypeError(
|
|
770
748
|
f"Type `{type(value).__name__}` is not (a subclass of) type "
|