├── .gitattributes ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .travis.yml ├── LICENCE.rst ├── README.rst ├── docs ├── .buildinfo ├── .nojekyll ├── Makefile ├── _doc_src │ ├── api_reference.rst │ ├── conf.py │ ├── functions │ │ ├── hydroeval.evaluator.rst │ │ ├── hydroeval.kge.rst │ │ ├── hydroeval.kge_c2m.rst │ │ ├── hydroeval.kgenp.rst │ │ ├── hydroeval.kgenp_c2m.rst │ │ ├── hydroeval.kgeprime.rst │ │ ├── hydroeval.kgeprime_c2m.rst │ │ ├── hydroeval.mare.rst │ │ ├── hydroeval.nse.rst │ │ ├── hydroeval.nse_c2m.rst │ │ ├── hydroeval.objective_functions.rst │ │ ├── hydroeval.pbias.rst │ │ └── hydroeval.rmse.rst │ ├── genindex.rst │ ├── index.rst │ ├── installation.rst │ ├── licence.rst │ ├── support.rst │ └── tutorial.rst ├── _doc_static │ ├── custom.css │ ├── pygments.css │ └── theme_overrides.css ├── _doc_templates │ ├── attribute.rst │ ├── base.rst │ ├── function.rst │ ├── method.rst │ └── versions.html ├── _sources │ ├── api_reference.rst.txt │ ├── functions │ │ ├── hydroeval.evaluator.rst.txt │ │ ├── hydroeval.kge.rst.txt │ │ ├── hydroeval.kge_c2m.rst.txt │ │ ├── hydroeval.kgenp.rst.txt │ │ ├── hydroeval.kgenp_c2m.rst.txt │ │ ├── hydroeval.kgeprime.rst.txt │ │ ├── hydroeval.kgeprime_c2m.rst.txt │ │ ├── hydroeval.mare.rst.txt │ │ ├── hydroeval.nse.rst.txt │ │ ├── hydroeval.nse_c2m.rst.txt │ │ ├── hydroeval.objective_functions.rst.txt │ │ ├── hydroeval.pbias.rst.txt │ │ └── hydroeval.rmse.rst.txt │ ├── genindex.rst.txt │ ├── index.rst.txt │ ├── installation.rst.txt │ ├── licence.rst.txt │ ├── support.rst.txt │ └── tutorial.rst.txt ├── _static │ ├── basic.css │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── Lato │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-bolditalic.woff2 │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-italic.woff2 │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.ttf │ │ │ ├── lato-regular.woff │ │ │ └── lato-regular.woff2 │ │ ├── Roboto-Slab-Bold.woff │ │ ├── Roboto-Slab-Bold.woff2 │ │ ├── Roboto-Slab-Light.woff │ │ ├── Roboto-Slab-Light.woff2 │ │ ├── Roboto-Slab-Regular.woff │ │ ├── Roboto-Slab-Regular.woff2 │ │ ├── Roboto-Slab-Thin.woff │ │ ├── Roboto-Slab-Thin.woff2 │ │ ├── RobotoSlab │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ └── roboto-slab-v7-regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── lato-bold-italic.woff │ │ ├── lato-bold-italic.woff2 │ │ ├── lato-bold.woff │ │ ├── lato-bold.woff2 │ │ ├── lato-normal-italic.woff │ │ ├── lato-normal-italic.woff2 │ │ ├── lato-normal.woff │ │ └── lato-normal.woff2 │ ├── jquery-3.5.1.js │ ├── jquery.js │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── theme_overrides.css │ ├── underscore-1.3.1.js │ └── underscore.js ├── api_reference.html ├── functions │ ├── hydroeval.evaluator.html │ ├── hydroeval.kge.html │ ├── hydroeval.kge_c2m.html │ ├── hydroeval.kgenp.html │ ├── hydroeval.kgenp_c2m.html │ ├── hydroeval.kgeprime.html │ ├── hydroeval.kgeprime_c2m.html │ ├── hydroeval.mare.html │ ├── hydroeval.nse.html │ ├── hydroeval.nse_c2m.html │ ├── hydroeval.objective_functions.html │ ├── hydroeval.pbias.html │ └── hydroeval.rmse.html ├── genindex.html ├── index.html ├── installation.html ├── licence.html ├── objects.inv ├── search.html ├── searchindex.js ├── support.html └── tutorial.html ├── hydroeval ├── __init__.py ├── hydroeval.py ├── objective_functions.py └── version.py ├── sample_data ├── catchment.obs.flow.nc └── catchment.sim.flow.nc ├── setup.py └── tests ├── run_all_tests.py ├── test_evaluator.py └── test_objective_functions.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/LICENCE.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_doc_src/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/api_reference.rst -------------------------------------------------------------------------------- /docs/_doc_src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/conf.py -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.evaluator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.evaluator.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.kge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.kge.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.kge_c2m.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.kge_c2m.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.kgenp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.kgenp.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.kgenp_c2m.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.kgenp_c2m.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.kgeprime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.kgeprime.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.kgeprime_c2m.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.kgeprime_c2m.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.mare.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.mare.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.nse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.nse.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.nse_c2m.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.nse_c2m.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.objective_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.objective_functions.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.pbias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.pbias.rst -------------------------------------------------------------------------------- /docs/_doc_src/functions/hydroeval.rmse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/functions/hydroeval.rmse.rst -------------------------------------------------------------------------------- /docs/_doc_src/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/genindex.rst -------------------------------------------------------------------------------- /docs/_doc_src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/index.rst -------------------------------------------------------------------------------- /docs/_doc_src/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/installation.rst -------------------------------------------------------------------------------- /docs/_doc_src/licence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/licence.rst -------------------------------------------------------------------------------- /docs/_doc_src/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/support.rst -------------------------------------------------------------------------------- /docs/_doc_src/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_src/tutorial.rst -------------------------------------------------------------------------------- /docs/_doc_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_doc_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_static/pygments.css -------------------------------------------------------------------------------- /docs/_doc_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/_doc_templates/attribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_templates/attribute.rst -------------------------------------------------------------------------------- /docs/_doc_templates/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_templates/base.rst -------------------------------------------------------------------------------- /docs/_doc_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_templates/function.rst -------------------------------------------------------------------------------- /docs/_doc_templates/method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_templates/method.rst -------------------------------------------------------------------------------- /docs/_doc_templates/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_doc_templates/versions.html -------------------------------------------------------------------------------- /docs/_sources/api_reference.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/api_reference.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.evaluator.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.evaluator.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.kge.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.kge.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.kge_c2m.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.kge_c2m.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.kgenp.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.kgenp.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.kgenp_c2m.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.kgenp_c2m.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.kgeprime.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.kgeprime.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.kgeprime_c2m.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.kgeprime_c2m.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.mare.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.mare.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.nse.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.nse.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.nse_c2m.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.nse_c2m.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.objective_functions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.objective_functions.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.pbias.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.pbias.rst.txt -------------------------------------------------------------------------------- /docs/_sources/functions/hydroeval.rmse.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/functions/hydroeval.rmse.rst.txt -------------------------------------------------------------------------------- /docs/_sources/genindex.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/genindex.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/_sources/licence.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/licence.rst.txt -------------------------------------------------------------------------------- /docs/_sources/support.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/support.rst.txt -------------------------------------------------------------------------------- /docs/_sources/tutorial.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_sources/tutorial.rst.txt -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/api_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/api_reference.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.evaluator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.evaluator.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.kge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.kge.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.kge_c2m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.kge_c2m.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.kgenp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.kgenp.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.kgenp_c2m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.kgenp_c2m.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.kgeprime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.kgeprime.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.kgeprime_c2m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.kgeprime_c2m.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.mare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.mare.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.nse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.nse.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.nse_c2m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.nse_c2m.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.objective_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.objective_functions.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.pbias.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.pbias.html -------------------------------------------------------------------------------- /docs/functions/hydroeval.rmse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/functions/hydroeval.rmse.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/installation.html -------------------------------------------------------------------------------- /docs/licence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/licence.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/support.html -------------------------------------------------------------------------------- /docs/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/docs/tutorial.html -------------------------------------------------------------------------------- /hydroeval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/hydroeval/__init__.py -------------------------------------------------------------------------------- /hydroeval/hydroeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/hydroeval/hydroeval.py -------------------------------------------------------------------------------- /hydroeval/objective_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/hydroeval/objective_functions.py -------------------------------------------------------------------------------- /hydroeval/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/hydroeval/version.py -------------------------------------------------------------------------------- /sample_data/catchment.obs.flow.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/sample_data/catchment.obs.flow.nc -------------------------------------------------------------------------------- /sample_data/catchment.sim.flow.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/sample_data/catchment.sim.flow.nc -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/setup.py -------------------------------------------------------------------------------- /tests/run_all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/tests/run_all_tests.py -------------------------------------------------------------------------------- /tests/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/tests/test_evaluator.py -------------------------------------------------------------------------------- /tests/test_objective_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThibHlln/hydroeval/HEAD/tests/test_objective_functions.py --------------------------------------------------------------------------------