HBV-Lab 0.1.0__tar.gz → 0.2.1__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.
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/HBV_model.py +4 -4
- hbv_lab-0.2.1/HBV_Lab/__init__.py +5 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/hbv_step.py +3 -3
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab.egg-info/PKG-INFO +2 -2
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/PKG-INFO +2 -2
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/README.md +1 -1
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/setup.py +1 -1
- hbv_lab-0.1.0/HBV_Lab/__init__.py +0 -1
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/calibration.py +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/response.py +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/routing.py +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/snow.py +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/soil.py +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab/uncertainty.py +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab.egg-info/SOURCES.txt +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab.egg-info/dependency_links.txt +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab.egg-info/requires.txt +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/HBV_Lab.egg-info/top_level.txt +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/LICENSE +0 -0
- {hbv_lab-0.1.0 → hbv_lab-0.2.1}/setup.cfg +0 -0
|
@@ -22,12 +22,12 @@ from matplotlib.dates import DateFormatter
|
|
|
22
22
|
import os
|
|
23
23
|
import datetime
|
|
24
24
|
from types import MethodType
|
|
25
|
-
from uncertainty import uncertainty
|
|
26
|
-
from calibration import calibration
|
|
25
|
+
from .uncertainty import uncertainty
|
|
26
|
+
from .calibration import calibration
|
|
27
27
|
# from calibration import calibrate_hbv_model
|
|
28
28
|
# from uncertainty import evaluate_uncertainty
|
|
29
|
-
from hbv_step import hbv_step
|
|
30
|
-
from routing import route_with_maxbas
|
|
29
|
+
from .hbv_step import hbv_step
|
|
30
|
+
from .routing import route_with_maxbas
|
|
31
31
|
|
|
32
32
|
class HBVModel(uncertainty, calibration):
|
|
33
33
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
from snow import snow_routine
|
|
2
|
-
from soil import soil_routine
|
|
3
|
-
from response import response_routine_two_tanks
|
|
1
|
+
from .snow import snow_routine
|
|
2
|
+
from .soil import soil_routine
|
|
3
|
+
from .response import response_routine_two_tanks
|
|
4
4
|
|
|
5
5
|
def hbv_step(precipitation, temperature, potential_et, params, initial_conditions):
|
|
6
6
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: HBV_Lab
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: An intuitive, object-oriented and user-friendly Python implementation of a lumped conceptual HBV hydrological model for educational and research purposes.
|
|
5
5
|
Home-page: https://github.com/abdallaox/HBV_python_implementation
|
|
6
6
|
Author: Abdalla Mohammed
|
|
@@ -35,7 +35,7 @@ Dynamic: summary
|
|
|
35
35
|
|
|
36
36
|
# HBV_Lab (Python implementation of a lumped conceptual HBV model)
|
|
37
37
|
|
|
38
|
-
HBV is a simple conceptual hydrological model that simulates the main hydrological processes related to snow, soil, groundwater, and routing [[1]](https://
|
|
38
|
+
HBV is a simple conceptual hydrological model that simulates the main hydrological processes related to snow, soil, groundwater, and routing [[1]](https://iwaponline.com/hr/article/4/3/147/1357/DEVELOPMENT-OF-A-CONCEPTUAL-DETERMINISTIC-RAINFALL). There are many software packages and off-the-shelf products that implement different versions of it [[2]](https://www.geo.uzh.ch/en/units/h2k/Services/HBV-Model.html) [[3]](https://hess.copernicus.org/articles/17/445/2013/).
|
|
39
39
|
|
|
40
40
|
I've been experimenting with the model lately and—in an endeavour to better understand the logic behind it—I decided to implement my own version—in Python, following an intuitive object-oriented programming approach.
|
|
41
41
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: HBV_Lab
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: An intuitive, object-oriented and user-friendly Python implementation of a lumped conceptual HBV hydrological model for educational and research purposes.
|
|
5
5
|
Home-page: https://github.com/abdallaox/HBV_python_implementation
|
|
6
6
|
Author: Abdalla Mohammed
|
|
@@ -35,7 +35,7 @@ Dynamic: summary
|
|
|
35
35
|
|
|
36
36
|
# HBV_Lab (Python implementation of a lumped conceptual HBV model)
|
|
37
37
|
|
|
38
|
-
HBV is a simple conceptual hydrological model that simulates the main hydrological processes related to snow, soil, groundwater, and routing [[1]](https://
|
|
38
|
+
HBV is a simple conceptual hydrological model that simulates the main hydrological processes related to snow, soil, groundwater, and routing [[1]](https://iwaponline.com/hr/article/4/3/147/1357/DEVELOPMENT-OF-A-CONCEPTUAL-DETERMINISTIC-RAINFALL). There are many software packages and off-the-shelf products that implement different versions of it [[2]](https://www.geo.uzh.ch/en/units/h2k/Services/HBV-Model.html) [[3]](https://hess.copernicus.org/articles/17/445/2013/).
|
|
39
39
|
|
|
40
40
|
I've been experimenting with the model lately and—in an endeavour to better understand the logic behind it—I decided to implement my own version—in Python, following an intuitive object-oriented programming approach.
|
|
41
41
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# HBV_Lab (Python implementation of a lumped conceptual HBV model)
|
|
2
2
|
|
|
3
|
-
HBV is a simple conceptual hydrological model that simulates the main hydrological processes related to snow, soil, groundwater, and routing [[1]](https://
|
|
3
|
+
HBV is a simple conceptual hydrological model that simulates the main hydrological processes related to snow, soil, groundwater, and routing [[1]](https://iwaponline.com/hr/article/4/3/147/1357/DEVELOPMENT-OF-A-CONCEPTUAL-DETERMINISTIC-RAINFALL). There are many software packages and off-the-shelf products that implement different versions of it [[2]](https://www.geo.uzh.ch/en/units/h2k/Services/HBV-Model.html) [[3]](https://hess.copernicus.org/articles/17/445/2013/).
|
|
4
4
|
|
|
5
5
|
I've been experimenting with the model lately and—in an endeavour to better understand the logic behind it—I decided to implement my own version—in Python, following an intuitive object-oriented programming approach.
|
|
6
6
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from .HBV_model import HBVModel
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|