Metadata-Version: 1.1
Name: pygeoexif
Version: 0.0.1
Summary: Simply get latitude and longitude from an image's EXIF data
Home-page: http://github.com/ebrelsford/pygeoexif
Author: Eric Brelsford
Author-email: ebrelsford@gmail.com
License: MIT License
Description: pygeoexif
        =========
        
        A python module for reading latitude and longitude from an image's EXIF data.
        
        Heavily based on [this gist](https://gist.github.com/erans/983821), packaged
        here for ease of installation and use.
        
        Requires PIL.
        
        
        Install
        -------
        
        Use pip: `pip install pygeoexif`
        
        
        Usage
        -----
        
        ```python
        from PIL import Image
        from pygeoexif import get_exif_data, get_lat_lon
        
        image = Image.open(<path_to_image>)
        lat, lon = get_lat_lon(get_exif_data(image))
        ```
        
        
        License
        -------
        
        MIT, as permitted by [this comment](https://gist.github.com/erans/983821#gistcomment-882766)
        in the original.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Software Development
