Metadata-Version: 1.1
Name: whitebox
Version: 0.1.2
Summary: An advanced geospatial data analysis platform 
Home-page: https://github.com/giswqs/whitebox
Author: Qiusheng Wu
Author-email: giswqs@gmail.com
License: MIT license
Description: ========
        whitebox
        ========
        
        
        .. image:: https://img.shields.io/pypi/v/whitebox.svg
                :target: https://pypi.python.org/pypi/whitebox
        
        .. image:: https://img.shields.io/travis/giswqs/whitebox.svg
                :target: https://travis-ci.org/giswqs/whitebox
        
        .. image:: https://readthedocs.org/projects/whitebox/badge/?version=latest
                :target: https://whitebox.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        .. image:: https://img.shields.io/badge/License-MIT-yellow.svg
                :target: https://opensource.org/licenses/MIT
        
        
        
        An advanced geospatial data analysis platform
        
        
        * Authors: Dr. John Lindsay (http://www.uoguelph.ca/~hydrogeo/index.html)
        * GitHub repos: https://github.com/jblindsay/whitebox-tools | https://github.com/giswqs/whitebox
        * PyPI: https://pypi.org/project/whitebox/
        * Documentation: https://whitebox.readthedocs.io.
        * Free software: MIT license
        
        
        Features
        --------
        
        * TODO
        
        
        Using It
        --------
        Install the Python package using the following command:
        
        .. code:: python
        
          pip install whitebox
        
        
        And use:
        
        .. code:: python
        
            import os
            import pkg_resources
            import whitebox
        
            wbt = whitebox.WhiteboxTools()
            print(wbt.version())
            print(wbt.help())
        
            # identify the sample data directory of the package
            data_dir = os.path.dirname(pkg_resources.resource_filename("whitebox", 'testdata/'))
        
            wbt.set_working_dir(data_dir)
            wbt.verbose = False
            wbt.feature_preserving_denoise("DEM.tif", "smoothed.tif", filter=9)
            wbt.breach_depressions("smoothed.tif", "breached.tif")
            wbt.d_inf_flow_accumulation("breached.tif", "flow_accum.tif")
        
        Check the example.py_ for more details.
        
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        .. _example.py: https://github.com/giswqs/whitebox/blob/master/whitebox/example.py
        
        
        =======
        History
        =======
        
        0.1.0 (2018-06-06)
        ------------------
        
        * First release on PyPI.
        
Keywords: whitebox
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
