-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmappr.py
More file actions
executable file
·338 lines (302 loc) · 14.2 KB
/
mappr.py
File metadata and controls
executable file
·338 lines (302 loc) · 14.2 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#!/usr/bin/env python3
# @Author: Aswin Sivaraman
# @Email: aswin.sivaraman@gmail.com
# @Last Modified by: Aswin Sivaraman
# @Last Modified time: 2018-01-30 00:08:04
from mpl_toolkits.basemap import Basemap
from datetime import datetime
from calendar import month_name
from haversine import haversine
from tqdm import tqdm
import numpy as np
import time
import json
import os
def status(_d):
if _d['place']:
return _d['place'].replace('\n',' ')
else:
if _d['status'] == "drive":
return "Driving..."
if _d['status'] == "train":
return "Riding the train..."
if _d['status'] == "flight":
return "Flying..."
if __name__ == '__main__':
# Suppress Matplotlib and Scipy-specific warnings
# TODO: https://github.com/matplotlib/basemap/issues/382
# TODO: https://github.com/scipy/scipy/issues/5998
import warnings
import matplotlib.cbook
warnings.filterwarnings("ignore",
category=matplotlib.cbook.mplDeprecation)
warnings.filterwarnings("ignore",
module="scipy", message="^internal gelsd")
# Load configuration
import configparser
config = configparser.ConfigParser(
comment_prefixes=(';'),
inline_comment_prefixes=(';'))
config.read('config.ini')
# Define rendering configuration
dpi = 120
fps = int(config['render']['fps'])
pltw = int(config['render']['resolution_w'])
plth = int(config['render']['resolution_h'])
# Set up logging
import logging
logging.basicConfig(format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger('mappr')
if config['processing'].getboolean('debug'):
logger.setLevel(logging.DEBUG)
else:
logger.setLevel(logging.WARNING)
# Initialize the figure
logger.info('Initializing figure...')
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(pltw // dpi, plth // dpi))
ax = fig.add_axes([0, 0, 1, 1])
ax.set_aspect(plth/pltw, adjustable='datalim')
# plt.tight_layout()
color = config['colors']
# Create a Basemap object
logger.info('Creating a Basemap object...')
resolution = ((('h' if pltw > 1280 else 'i') if pltw > 640 else 'l') if pltw > 320 else 'c')
basemap = Basemap(projection='merc',lat_ts=20,resolution=resolution,epsg=4326)
if config['map'].getboolean('use_arcgis'):
basemap.arcgisimage(service='World_Street_Map',xpixels=pltw)
if config['map'].getboolean('use_etopo'):
basemap.etopo(alpha=0.25)
if config['map'].getboolean('use_fill'):
basemap.drawmapboundary(linewidth=0,fill_color=color['water'])
basemap.fillcontinents(color=color['grass'], lake_color=color['water'])
basemap_states = [basemap.drawstates()]
basemap_countries = [basemap.drawcountries()]
# Define Basemap bounds
logger.info('Defining Basemap bounds...')
lonmin, latmin = (basemap.llcrnrlon, basemap.llcrnrlat)
lonmax, latmax = (basemap.urcrnrlon, basemap.urcrnrlat)
bound = lambda _x,_l,_h: min(max(_x,_l),_h)
roundp = lambda _x,_y: round(_x/_y)*_y
xmin, ymin = (basemap.llcrnrx, basemap.llcrnry)
xmax, ymax = (basemap.urcrnrx, basemap.urcrnry)
ymax = min(ymax,xmax*plth/pltw)
# Create a legend
logger.info('Creating a legend...')
import matplotlib.patches as mpatches
legend = []
legend.append(mpatches.Patch(color=color['drive'], label='By Car / On Foot'))
legend.append(mpatches.Patch(color=color['train'], label='By Train'))
legend.append(mpatches.Patch(color=color['flight'], label='By Plane'))
plt.legend(handles=legend, loc="lower right", fontsize=plth//40)
# Import place data
logger.info('Importing place data...')
with open(os.path.join(config['data']['root'], 'places.json'), 'r') as _file_places:
data_places = json.load(_file_places)
# Import location data
logger.info('Importing location data...')
data = []
hist_places = {}
for _dir, _, _files in os.walk(os.path.join(config['data']['root'], config['data']['year'])):
for _file in _files:
with open(os.path.join(_dir, _file), 'r') as _input:
_locations = json.load(_input)['locations']
for _i, _d in enumerate(_locations):
_d['time'] = int(_d['timestampMs']) // 1000
_d['lat'] = _d['latitudeE7'] / 10000000
_d['lon'] = _d['longitudeE7'] / 10000000
_d['x'], _d['y'] = basemap(_d['lon'],_d['lat'])
_date = datetime.fromtimestamp(_d['time'])
_d['date'] = '{} {}, {}'.format(
month_name[_date.month], _date.day, _date.year)
_coordinate = (_d['lat'], _d['lon'])
_nearest = min(data_places, key=lambda _x:
haversine((_x['lat'], _x['lon']), _coordinate, unit='mi'))
if haversine((_nearest['lat'], _nearest['lon']), _coordinate, unit='mi') < _nearest['radius']:
_d['place'] = _nearest['name']
_d['type'] = _nearest['type']
else:
_d['place'] = None
_d['type'] = None
hist_places[_d['place']] = hist_places.get(_d['place'], 0) + 1
_d['interpolated'] = False
_d['status'] = "drive"
del _d['timestampMs']
del _d['latitudeE7']
del _d['longitudeE7']
data.extend(_locations)
data = sorted(data, key=lambda _k: _k['time'])
logger.info('Frames imported = {}'.format(len(data)))
# Scrub consecutive data points in one place
if config['processing'].getboolean('scrub'):
_last = None
_i = _count = 0
_hist_scrub = {}
while _i < len(data):
if data[_i]['place']:
if _last != data[_i]['place']:
_count = 1
_last = data[_i]['place']
else:
_count += 1
if _count > (fps*3):
_hist_scrub[_last] = _hist_scrub.get(_last, 0) + 1
del data[_i]
_i += 1
logger.info('Scrubbed '+''.join(['{} frames from {}{}'.format(
_hist_scrub[_k],_k,((', ' if _i < len(_hist_scrub) - 2 else ', and ')
if _i < len(_hist_scrub) - 1 else '.')
) for _i, _k in enumerate(_hist_scrub)]))
logger.info('Frames after scrubbing = {}'.format(len(data)))
# Interpolate data for flights or train rides
frames_interpolated = 0
if config['processing'].getboolean('interpolate'):
_i = 0
while _i < len(data)-1:
if not data[_i]['interpolated']:
_d = data[_i]
_n = data[_i+1]
_s = None
distance = haversine((_d['lat'], _d['lon']), (_n['lat'], _n['lon']), unit='mi')
if distance > 500:
_s = "flight"
elif (distance > 50) and (_d['lon'] > 0):
_s = "train"
if _s:
logger.info('Interpolating data for {} from {} to {}...'.format(
_s, _d['place'], _n['place']))
_l, = basemap.drawgreatcircle(_d['lon'], _d['lat'], _n['lon'], _n['lat'])
_x, _y = _l.get_data(); _l.remove(); del _l
for _j in reversed(range(len(_x))):
_v = {}
_v['status'] = _s
_v['time'] = _n['time']
_date = datetime.fromtimestamp(_v['time'])
_v['date'] = '{} {}, {}'.format(
month_name[_date.month], _date.day, _date.year)
_v['interpolated'] = True
_v['place'] = None
_v['type'] = None
_v['x'], _v['y'] = (_x[_j], _y[_j])
_v['lon'], _v['lat'] = basemap(_x[_j], _y[_j], inverse=True)
data.insert(_i+1, _v)
frames_interpolated += len(_x)
_i += 1
logger.info('Frames after interpolating = {}'.format(len(data)))
# Use a fourth-order filter to generate camera/view coordinates
logger.info('Computing smooth camera position...')
from scipy.signal import savgol_filter
clon = savgol_filter([_d['lon'] for _d in data], fps if fps%2 else fps+1, 4)
clat = savgol_filter([_d['lat'] for _d in data], fps if fps%2 else fps+1, 4)
# Initialize frame text
if config['render'].getboolean('show_date') or config['render'].getboolean('show_status'):
logger.info('Initializing frame text...')
if config['render'].getboolean('show_date'):
frame_date_image = plt.imread('icons/calendar.png')
frame_date_artist = ax.imshow(frame_date_image, alpha=1, aspect='equal',
extent=[0.02, .08*plth/pltw, 0.06, .11],
zorder=3, transform=ax.transAxes)
frame_date_text = ax.text(0.057, 0.07, '', color='black', fontsize=plth//40, transform=ax.transAxes)
if config['render'].getboolean('show_status'):
frame_status_image = plt.imread('icons/{}.png'.format(data[0]['status']))
frame_status_artist = ax.imshow(frame_status_image, alpha=1, aspect='equal',
extent=[0.02, .08*plth/pltw, 0.13, .18],
zorder=3, transform=ax.transAxes)
frame_status_text = ax.text(0.057, 0.14, '', color='black', fontsize=plth//40, transform=ax.transAxes)
# Define view boundaries
logger.info('Defining view boundaries...')
lonz = float(config['map']['zoom'])
latz = lonz * plth / pltw
xl, yl = basemap(clon[0]-lonz, clat[0]-latz)
xh, yh = basemap(clon[0]+lonz, clat[0]+latz)
xl = bound(xl,xmin,xmax)
xh = bound(xh,xmin,xmax)
yl = bound(yl,ymin,ymax)
yh = bound(yh,ymin,ymax)
ax.set_xlim([xl, xh])
ax.set_ylim([yl, yh])
# Place locations on the map
logger.info('Placing locations on the map...')
map_places = []
for i, c in enumerate(data_places):
cx, cy = basemap(c['lon'],c['lat'])
map_places.append(ax.plot(cx,cy,
color=color['place'],
marker='o',snap=True,
markersize=6)[0])
map_places.append(ax.text(s=c['name'],
x=cx-0.075,y=cy+0.075,zorder=3,
horizontalalignment='right',
multialignment='center',
color="black",alpha=1,fontsize=plth//50))
# Export data
with open(os.path.join(config['data']['root'], config['data']['year'] + '.json'), 'w') as fp:
json.dump(data, fp, indent=4)
# Array for trail
map_trail = []
# Render a frame
def render(frame_index):
_i = bound(frame_index-frames_before,1,len(data)-1)
_p = bound(frame_index-frames_before-1,0,len(data)-1)
# Determine meridian coordinates of this frame and the previous frame
lon, lat = (data[_i]['lon'], data[_i]['lat'])
lonp, latp = (data[_p]['lon'], data[_p]['lat'])
x, y = (data[_i]['x'], data[_i]['y'])
xp, yp = (data[_p]['x'], data[_p]['y'])
# Compute zoom level
_z = bound(frame_index-frames_before-len(data),-1,frames_zoom)
if _z < 0:
lonz = float(config['map']['zoom'])
else:
lonz = max(float(config['map']['zoom']),lonmax*_z/frames_zoom)
_a = max(0,1-10*_z/frames_zoom)
[t.set_alpha(_a) for t in map_places]
[t.set_alpha(_a) for t in basemap_states]
[t.set_alpha(_a) for t in basemap_countries]
[t.set_linewidth(2-1.5*_z/frames_zoom) for t in map_trail]
# Re-adjust view boundaries
latz = lonz * plth / pltw
xl, yl = basemap(clon[_i]-lonz, clat[_i]-latz)
xl, yl = (bound(xl,xmin,xmax), bound(yl,ymin,ymax))
xh, yh = basemap(clon[_i]+lonz, clat[_i]+latz)
xh, yh = (bound(xh,xmin,xmax), bound(yh,ymin,ymax))
ax.set_xlim([xl, xh])
ax.set_ylim([yl, yh])
# If looping around, disconnect the previous trail point
if (abs(x-xp) > (xmax-xmin)//2) or (abs(y-yp) > (ymax-ymin)//2):
xp = x; yp = y;
# Draw a trail from the previous point to the current point
map_trail.append(basemap.plot([x, xp], [y, yp], color=color[data[_i]['status']], linewidth=2)[0])
# Update frame text
if config['render'].getboolean('show_date'):
frame_date_text.set_text(data[_i]['date'])
if config['render'].getboolean('show_status'):
frame_status_artist.set_data(plt.imread('icons/{}.png'.format(
data[_i]['type'] if data[_i]['type'] else data[_i]['status'])))
frame_status_text.set_text(status(data[_i]))
# Update rendering progress bar
global pbar
pbar.update()
return ax, map_trail, frame_date_text, frame_status_text, frame_status_artist
# Compute the number of frames to animate
frames_before = fps * int(config['render']['time_before'])
frames_zoom = fps * int(config['render']['time_zoom'])
frames_after = fps * int(config['render']['time_after'])
frames_total = frames_before + len(data) + frames_zoom + frames_after
frames = range(1, frames_total)
# Create and save animation
print("Rendering Mappr from {} ({}) to {} ({})...".format(
data[max(min(frames)-frames_before,0)]['date'],
status(data[max(min(frames)-frames_before,0)]),
data[min(max(frames)-frames_after-frames_zoom-frames_before,len(data))]['date'],
status(data[min(max(frames)-frames_after-frames_zoom-frames_before,len(data))])))
pbar = tqdm(total=len(frames),unit='frames')
import matplotlib.animation as animation
anim = animation.FuncAnimation(fig, render, frames=frames)
writer = animation.writers['ffmpeg'](fps=fps)
anim.save('map_' + str(int(time.time())) + '.mp4', dpi=dpi, writer=writer)
pbar.close()
# Report stats
print("Top 3 Places Visited:")
top_cities = [(hist_places[k], k) for k in sorted(hist_places, key=hist_places.get, reverse=True) if k is not None]
print("\t1st >>", top_cities[0][1], "\n", "\t2nd >>", top_cities[1][1], "\n", "\t3rd >>", top_cities[2][1])