Metadata-Version: 1.1
Name: vincenty
Version: 0.1.1
Summary: Calculate the geographical distance between 2 points with extreme accuracy.
Home-page: https://github.com/maurycyp/vincenty
Author: Maurycy Pietrzak
Author-email: ['github.com@wayheavy.com']
License: Unlicense
Description: Vincenty
        
        Calculate the geographical distance (in kilometers or miles) between 2 points
        with extreme accuracy.
        
        
        Example: distance between Boston and New York City
        
        >>> from vincenty import vincenty
        >>> boston = (42.3541165, -71.0693514)
        >>> newyork = (40.7791472, -73.9680804)
        >>> vincenty(boston, newyork)
        298.396057
        >>> vincenty(boston, newyork, miles=True)
        185.414657
        
        
        Installation
        
        $ pip install vincenty
        
        
        See also
        
        http://en.wikipedia.org/wiki/Vincenty%27s_formulae
        http://en.wikipedia.org/wiki/World_Geodetic_System
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Mathematics
