You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 8, 2021. It is now read-only.
This package is designed to simplify the collection and analysis of
hydrology data. Use HydroPy in a Jupyter notebook and save your
analysis so that you can recreate your procedures and share them with others.
Hydropy uses the power of Numpy and Pandas to quickly process large datasets.
Matplotlib and Seaborn are built-in to Hydropy, allowing you to create
publication-ready diagrams quickly and easily.
# Recession periods in June 2011:myflowserie.get_year('2011').get_month("Jun").get_recess()
# Peak values above 90th percentile for station LS06_347 in july 2010:
myflowserie['LS06_347'].get_year('2010').get_month("Jul").get_highpeaks(150, above_percentile=0.9)
# Select 3 storms out of the series
storms = myflowserie.derive_storms(raindata['P06_014'], 'LS06_347', number_of_storms=3, drywindow=96, makeplot=True)
A more extended tutorial/introduction is provided in a ipython notebook: hydropy_tutorial.ipynb
We acknowledge the Flemish Environmental Agency (VMM) for the data used in the tutorial. It can be downloaded from https://www.waterinfo.be/.
To install this, git clone the repo and then install it by:
python setup.py install
To test the functionalities yourself without installing it, use the following environment provided by Binder: