ewatercycle-HBV


Nameewatercycle-HBV JSON
Version 1.8.4 PyPI version JSON
download
home_pageNone
SummaryImplementation of HBV for eWaterCycle
upload_time2024-05-16 10:30:35
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords ewatercycle hydrology
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # eWaterCycle plugin - HBV

[![Python package](https://github.com/Daafip/ewatercycle-hbv/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/Daafip/ewatercycle-hbv/actions/workflows/test.yml)
[![docs badge](https://readthedocs.org/projects/ewatercycle-hbv/badge/?version=latest)](https://ewatercycle-hbv.readthedocs.io/en/latest/index.html)
[![PyPI](https://img.shields.io/pypi/v/ewatercycle-HBV)](https://pypi.org/project/ewatercycle-HBV/)
[![github license badge](https://img.shields.io/github/license/Daafip/ewatercycle-hbv)](https://github.com/Daafip/ewatercycle-hbv)
[![fair-software badge](https://img.shields.io/badge/fair--software.eu-%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8B%20%20%E2%97%8B-yellow)](https://fair-software.eu)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Daafip_ewatercycle-hbv&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=Daafip_ewatercycle-hbv)


This package is based on the [Leaky bucket](https://github.com/eWaterCycle/ewatercycle-leakybucket/tree/main) & is a wrapper for the [HBV-bmi](https://github.com/Daafip/HBV-bmi) model. 

HBV (Hydrologiska ByrÄns Vattenbalansavdelning) is a conceptual hydrological model. For more information on its history, see this [paper](https://hess.copernicus.org/articles/26/1371/2022/).
The actual model implemented here sit looks most like the original model from [1976](https://urn.kb.se/resolve?urn=urn:nbn:se:smhi:diva-5738).
See documentation for schematic of model layout. 

## Installation
Install this package alongside your eWaterCycle installation

```console
pip install ewatercycle-hbv
```

Then HBV becomes available as one of the eWaterCycle models

```python
from ewatercycle.models import HBV
```
## Documentation
Some basic documentation can be found [here](https://ewatercycle-hbv.readthedocs.io/en/latest/index.html)

## Changelog
Changes can be found in [CHANGELOG.md](https://github.com/Daafip/ewatercycle-hbv/blob/main/CHANGELOG.md) on GitHub

## Implementing your own model

For more information on how this plugin works, and on how to implement your own model see the [plugin guide](https://github.com/eWaterCycle/ewatercycle-leakybucket/blob/main/plugin_guide.md)

## License

This is a `ewatercycle-plugin` & thus this is distributed under the same terms as the template: the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) license.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ewatercycle-HBV",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "ewatercycle, hydrology",
    "author": null,
    "author_email": "David Haasnoot <davidhaasnoot@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/72/d8/ab638a6ade5a349be7fd4fabfa246c3f51b586d87ff11f229f8062c4a9c8/ewatercycle_hbv-1.8.4.tar.gz",
    "platform": null,
    "description": "# eWaterCycle plugin - HBV\n\n[![Python package](https://github.com/Daafip/ewatercycle-hbv/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/Daafip/ewatercycle-hbv/actions/workflows/test.yml)\n[![docs badge](https://readthedocs.org/projects/ewatercycle-hbv/badge/?version=latest)](https://ewatercycle-hbv.readthedocs.io/en/latest/index.html)\n[![PyPI](https://img.shields.io/pypi/v/ewatercycle-HBV)](https://pypi.org/project/ewatercycle-HBV/)\n[![github license badge](https://img.shields.io/github/license/Daafip/ewatercycle-hbv)](https://github.com/Daafip/ewatercycle-hbv)\n[![fair-software badge](https://img.shields.io/badge/fair--software.eu-%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8B%20%20%E2%97%8B-yellow)](https://fair-software.eu)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Daafip_ewatercycle-hbv&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=Daafip_ewatercycle-hbv)\n\n\nThis package is based on the [Leaky bucket](https://github.com/eWaterCycle/ewatercycle-leakybucket/tree/main) & is a wrapper for the [HBV-bmi](https://github.com/Daafip/HBV-bmi) model. \n\nHBV (Hydrologiska Byr\u00e5ns Vattenbalansavdelning) is a conceptual hydrological model. For more information on its history, see this [paper](https://hess.copernicus.org/articles/26/1371/2022/).\nThe actual model implemented here sit looks most like the original model from [1976](https://urn.kb.se/resolve?urn=urn:nbn:se:smhi:diva-5738).\nSee documentation for schematic of model layout. \n\n## Installation\nInstall this package alongside your eWaterCycle installation\n\n```console\npip install ewatercycle-hbv\n```\n\nThen HBV becomes available as one of the eWaterCycle models\n\n```python\nfrom ewatercycle.models import HBV\n```\n## Documentation\nSome basic documentation can be found [here](https://ewatercycle-hbv.readthedocs.io/en/latest/index.html)\n\n## Changelog\nChanges can be found in [CHANGELOG.md](https://github.com/Daafip/ewatercycle-hbv/blob/main/CHANGELOG.md) on GitHub\n\n## Implementing your own model\n\nFor more information on how this plugin works, and on how to implement your own model see the [plugin guide](https://github.com/eWaterCycle/ewatercycle-leakybucket/blob/main/plugin_guide.md)\n\n## License\n\nThis is a `ewatercycle-plugin` & thus this is distributed under the same terms as the template: the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) license.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Implementation of HBV for eWaterCycle",
    "version": "1.8.4",
    "project_urls": {
        "homepage": "https://github.com/Daafip/ewatercycle-hbv"
    },
    "split_keywords": [
        "ewatercycle",
        " hydrology"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7acf00a975db499b985eff3b8e3e85c3bcbd09ba2a707a79d4477e8fcdf75c4e",
                "md5": "bee4134b032fa45f0512c63bfca15f94",
                "sha256": "4a624ef96755a254b5fa096e1393788d4c69c70b526c3caa378ce3f58ce30559"
            },
            "downloads": -1,
            "filename": "ewatercycle_hbv-1.8.4-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bee4134b032fa45f0512c63bfca15f94",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 14662,
            "upload_time": "2024-05-16T10:30:33",
            "upload_time_iso_8601": "2024-05-16T10:30:33.484792Z",
            "url": "https://files.pythonhosted.org/packages/7a/cf/00a975db499b985eff3b8e3e85c3bcbd09ba2a707a79d4477e8fcdf75c4e/ewatercycle_hbv-1.8.4-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72d8ab638a6ade5a349be7fd4fabfa246c3f51b586d87ff11f229f8062c4a9c8",
                "md5": "b127d27acae1daaad40fcd23877394bb",
                "sha256": "b738b39cc3f8a61c7a53eccd0df020a15bb0d6b4a7d4322ebb9a6a9c5eeb87cc"
            },
            "downloads": -1,
            "filename": "ewatercycle_hbv-1.8.4.tar.gz",
            "has_sig": false,
            "md5_digest": "b127d27acae1daaad40fcd23877394bb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 124197,
            "upload_time": "2024-05-16T10:30:35",
            "upload_time_iso_8601": "2024-05-16T10:30:35.881978Z",
            "url": "https://files.pythonhosted.org/packages/72/d8/ab638a6ade5a349be7fd4fabfa246c3f51b586d87ff11f229f8062c4a9c8/ewatercycle_hbv-1.8.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-16 10:30:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Daafip",
    "github_project": "ewatercycle-hbv",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ewatercycle-hbv"
}
        
Elapsed time: 0.27293s