Metadata-Version: 1.1
Name: Pytess
Version: 0.1.0
Summary: Pure Python tessellation of points into polygons, including Delauney/Thiessin, and Voronoi polygons.
Home-page: http://github.com/karimbahgat/Pytess
Author: Karim Bahgat
Author-email: karim.bahgat.norway@gmail.com
License: MIT
Description: Pytess
        ======
        
        Pure Python tessellation of points into polygons, including
        Delauney/Thiessin, and Voronoi polygons. Built as a convenient user
        interface for Bill Simons/Carson Farmer python port of Steven Fortune
        C++ version of a Delauney triangulator.
        
        Platforms
        ---------
        
        Tested on Python version 2.x.
        
        Dependencies
        ------------
        
        Pure Python, no dependencies.
        
        Installing it
        -------------
        
        Pytess is installed with pip from the commandline:
        
        ::
        
            pip install pytess
        
        Usage
        -----
        
        To triangulate a set of points, simply do:
        
        ::
        
            import pytess
            points = [(1,1), (5,5), (3,5), (8,1)]
            triangles = pytess.triangulate(points)
        
        And for voronoi diagrams:
        
        ::
        
            import pytess
            points = [(1,1), (5,5), (3,5), (8,1)]
            voronoipolys = pytess.voronoi(points)
        
        More Information:
        -----------------
        
        -  `Home Page <http://github.com/karimbahgat/Pytess>`__
        -  `API Documentation <http://pythonhosted.org/Pytess>`__
        
        License:
        --------
        
        This code is free to share, use, reuse, and modify according to the MIT
        license, see license.txt
        
        Credits:
        --------
        
        I just made it more convenient to use for end-users and uploaded it to
        PyPi. The real credit goes to Bill Simons/Carson Farmer and Steven
        Fortune for implementing the algorithm in the first place.
        
        Karim Bahgat (2015)
        
        CHANGES
        -------
        
        0.1.0 (2015-06-25)
        ~~~~~~~~~~~~~~~~~~
        
        -  First pypi release
        
Keywords: GIS spatial tesselation voronoi delauney triangulation
Platform: UNKNOWN
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Scientific/Engineering :: GIS
