-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeocoder.py
36 lines (27 loc) · 984 Bytes
/
geocoder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Adapted from Kim Pham, "Web Mapping with Python and Leaflet," The Programming Historian, https://programminghistorian.org/en/lessons/mapping-with-python-leaflet
import geopy
import pandas
from geopy.geocoders import Nominatim, GoogleV3
# versions used: geopy 1.10.0, pandas 0.16.2, python 2.7.8
def main():
io = pandas.read_csv('filename.csv', index_col=None, header=0, sep=",")
print("hello")
def get_latitude(x):
try:
return x.latitude
except:
return None
def get_longitude(x):
try:
return x.longitude
except:
return None
#geolocator = Nominatim(user_agent="Project Name")
geolocator = GoogleV3(api_key='add your key here')
# uncomment the geolocator you want to use
geolocate_column = io['Address'].apply(geolocator.geocode)
io['latitude'] = geolocate_column.apply(get_latitude)
io['longitude'] = geolocate_column.apply(get_longitude)
io.to_csv('output-file.csv')
if __name__ == '__main__':
main()