Metadata-Version: 1.2
Name: Hydrograph-py
Version: 1.0.1
Summary: Hydrological python package for hydrograph analysis
Home-page: https://github.com/WilcoTerink/Hydrograph-py
Author: Wilco Terink
Author-email: terinkw@gmail.com
License: GPL-3.0
Description: Hydrograph-py
        =============
        
        Hydrograph-py is a hydrological Python package that provides some tools for:
        
        
          1. Separation of flow time-series into peak flow and baseflow.
          
          2. Filtering of peak flow events given a minimum event duration.
          
          3. Calculation of peak event volumes.
          
          4. Calculation of maximum annual peak flow and maximum annual peak event volume.
          
          5. Extreme value analysis using GEV fitting and plotting functions.
          
          
        Documentation
        -------------
        
        Reference documentation can be found `here <https://hydrograph-py.readthedocs.io/en/latest/>`_.
        
        Installation
        ------------
        
        Hydrograph-py can be installed via conda::
        
           conda install Hydrograph-py -c WilcoTerink
        
        or via pip::
        
           pip install Hydrograph-py
           
        Using the 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
        ---------
           
        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/ <http://www.gnu.org/licenses/>`__.      
Keywords: hydrograph peak flow baseflow GEV CDF MLE flood frequency
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
