Hydrograph-py is a hydrological Python package that provides some tools for:
- Separation of flow time-series into peak flow and baseflow.
- Filtering of peak flow events given a minimum event duration.
- Calculation of peak event volumes.
- Calculation of maximum annual peak flow and maximum annual peak event volume.
- Extreme value analysis using GEV fitting and plotting functions.
Reference documentation can be found here.
Hydrograph-py can be installed via conda:
conda install Hydrograph-py -c WilcoTerink
or via pip:
pip install Hydrograph-py
After installation, the functions from the python package can be imported by:
from Hydrograph.hydrograph import sepBaseflow, filterpeaks, maxFlowVolStats from Hydrograph.extreme_analysis import exceed, fitGEV, plotPDF, plotCDF, plotGEV
Copyright (C) 2019 Wilco Terink. Hydrograph-py is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.