-
Notifications
You must be signed in to change notification settings - Fork 245
/
talkmap.py
59 lines (45 loc) · 1.63 KB
/
talkmap.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# # Leaflet cluster map of talk locations
#
# (c) 2016-2017 R. Stuart Geiger, released under the MIT license
#
# Run this from the _talks/ directory, which contains .md files of all your talks.
# This scrapes the location YAML field from each .md file, geolocates it with
# geopy/Nominatim, and uses the getorg library to output data, HTML,
# and Javascript for a standalone cluster map.
#
# Requires: glob, getorg, geopy
import glob
import getorg
from geopy import Nominatim
g = glob.glob("*.md")
geocoder = Nominatim()
location_dict = {}
location = ""
permalink = ""
title = ""
venue = ""
count=0
for file in g:
with open(file, 'r') as f:
lines = f.read()
if lines.find('location: "') > 1:
loc_start = lines.find('location: "') + 11
lines_trim = lines[loc_start:]
loc_end = lines_trim.find('"')
location = lines_trim[:loc_end]
if lines.find('title: "') > 1:
loc_start = lines.find('title: "') + 8
lines_trim = lines[loc_start:]
loc_end = lines_trim.find('"')
title = lines_trim[:loc_end]
if lines.find('venue: "') > 1:
loc_start = lines.find('venue: "') + 8
lines_trim = lines[loc_start:]
loc_end = lines_trim.find('"')
venue = lines_trim[:loc_end]
key = str(title + " | " + venue + ", " + location)
location_dict[key] = geocoder.geocode(location)
print(key, "\n", location_dict[key])
count = count + 1
m = getorg.orgmap.create_map_obj()
getorg.orgmap.output_html_cluster_map(location_dict, folder_name="../talk_map", hashed_usernames=False)