Metadata-Version: 1.1
Name: elevationapi
Version: 1.0.1
Summary: Get the elevation of any land point on Earth using elevationapi.xyz
Home-page: https://github.com/Frankkkkk/python-elevationapi
Author: Frank Villaro-Dixon
Author-email: frank@villaro-dixon.eu
License: UNKNOWN
Description: python-elevationapi — Get the elevation of (almost) any point on Earth
        ======================================================================
        
        elevationapi is a simple library that interfaces with
        http://www.elevationapi.xyz . It permits you to get the elevation of
        almost any point on Earth.
        
        Example
        -------
        
        .. code:: python
        
            from elevationapi import Elevation
            e = Elevation()
        
            elevation_of_Geneva = e.getElevation(46.2, 6.15)
        
            #When asking for multiple points, use this instead:
            elevations = e.getElevations((46.2, 6.15), (6.3, 6.20))
        
        Using another API provider
        --------------------------
        
        Simply instance Elevation with:
        
        .. code:: python
        
            e = Elevation(base_url='http://your-server.tld/api')
        
        
        
Keywords: elevation altitude earth elevationapi.xyz
Platform: UNKNOWN
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
