Metadata-Version: 2.1
Name: photos_where
Version: 1.3
Summary: Analyze exif data
Home-page: https://github.com/visgean/where
Author: Visgean
Author-email: visgean@gmail.com
License: MIT
Description: # Where - day by day location from your photos 
        
        This scripts reads EXIF data from your photos and generates CSV file or Pandas dataframe with day by day location in terms of country. 
        
        It relies on my package [exif2pandas](https://github.com/Visgean/exif2pandas/). It uses [reverse-geocoder](https://github.com/thampiman/reverse-geocoder) to convert GPS data to country codes. That module uses a csv file with 150k cities and then uses nearest neighbour algorithm to find the position of each gps data point. This sometimes does not work in border regions so if you are seeing bad data the easiest fix is to copy [cities.csv](https://github.com/Visgean/where/blob/main/src/cities.csv) and add your village etc. 
        
        In case some of your photos contain bad gps data that show that you have been to countries where you have never been you can use ``ignore_countries`` argument. 
        
        
        ## Jupyter examples:
        
        See ``example.ipynb`` for example graphs and data frames exported.
        
        ## Install:
        
        See PYPI [Python package](https://pypi.org/project/photos-where/). 
        
        ```
        $ pip install photos-where
        ```
        
        ## Use:
        
        ```
        $ photos_where Dropbox/Photos/2020/
        $ ls where
        cities-pie.jpg      
        countries-pie.jpg
        intervals.csv
        location-by-day.csv 
        photos.feather     
        years.jpg
        ```
        
Keywords: exif sql
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
