Metadata-Version: 2.1
Name: hydrointerp
Version: 1.2.12
Summary: Functions for interpolating hydrologic features
Home-page: https://github.com/mullenkamp/hydrointerp
Author: Mike Kittridge
Author-email: mullenkamp1@gmail.com
License: Apache
Keywords: interpolation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: pandas
Requires-Dist: scipy
Requires-Dist: xarray
Requires-Dist: pyproj (>=2.1)
Requires-Dist: netcdf4
Provides-Extra: fiona
Requires-Dist: fiona ; extra == 'fiona'
Provides-Extra: rasterio
Requires-Dist: rasterio ; extra == 'rasterio'

hydrointerp - A Python package for interpolating hydrologic data
===================================================================

The hydrointerp package includes several interpolation functions specifically designed for hydrologic data. These are mainly derived from `Scipy <https://docs.scipy.org/doc/scipy/reference/index.html>`_ interpolation functions like `griddata <https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.griddata.html>`_.

Documentation
--------------
The primary documentation for the package can be found `here <https://hydrointerp.readthedocs.io>`_.

Installation
------------
hydrointerp can be installed via pip or conda::

  pip install hydrointerp

or::

  conda install -c mullenkamp hydrointerp

The core dependencies are `Pandas <http://pandas.pydata.org/pandas-docs/stable/>`_,  `Scipy <https://docs.scipy.org/doc/scipy/reference/index.html>`_, `xarray <http://xarray.pydata.org/en/stable/>`_, and `pyproj <http://pyproj4.github.io/pyproj/html/index.html>`_.


