-
Notifications
You must be signed in to change notification settings - Fork 3
/
Importer.py
560 lines (463 loc) · 26.1 KB
/
Importer.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
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
# -*- coding: utf-8 -*-
#
# # MIT License
#
# Copyright (c) 2019 Michael J Simms
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""Parses GPX, TCX, and FIT files, passing the contents to a ActivityWriter object."""
import calendar
import csv
import datetime
import fitparse
import gpxpy
import logging
import os
import traceback
import sys
from lxml import objectify
import Keys
class ActivityWriter(object):
"""Base class for any class that handles data read from the Importer."""
def is_duplicate_activity(self, user_id, start_time, optional_activity_id):
"""Inherited from ActivityWriter. Returns TRUE if the activity appears to be a duplicate of another activity. Returns FALSE otherwise."""
return False
def create_activity(self, username, user_id, stream_name, stream_description, activity_type, start_time, desired_activity_id):
"""Pure virtual method for starting a location stream - creates the activity ID for the specified user."""
return "", desired_activity_id
def create_activity_track(self, device_str, activity_id, track_name, track_description):
"""Pure virtual method for starting a location track - creates the activity ID for the specified user."""
pass
def create_activity_locations(self, device_str, activity_id, locations):
"""Pure virtual method for processing multiple location reads. 'locations' is an array of arrays in the form [time, lat, lon, alt]."""
pass
def create_activity_sensor_reading(self, activity_id, date_time, sensor_type, value):
"""Pure virtual method for processing a sensor reading from the importer."""
pass
def create_activity_sensor_readings(self, activity_id, sensor_type, values):
"""Pure virtual method for processing multiple sensor readings. 'values' is an array of arrays in the form [time, value]."""
pass
def create_activity_event(self, activity_id, event):
"""Pure virtual method for processing an event reading. 'event' is a dictionary describing an event."""
pass
def create_activity_events(self, activity_id, events):
"""Pure virtual method for processing multiple event readings. 'events' is an array of dictionaries in which each dictionary describes an event."""
pass
def finish_activity(self, activity_id, end_time):
"""Pure virtual method for any post-processing."""
pass
class Importer(object):
"""Importer for GPX and TCX location files."""
def __init__(self, activity_writer):
super(Importer, self).__init__()
self.activity_writer = activity_writer
@staticmethod
def normalize_activity_type(activity_type, sub_activity_type, file_name):
"""Takes the various activity names that appear in GPX and TCX files and normalizes to the ones used in this app."""
if activity_type is None:
return Keys.TYPE_UNSPECIFIED_ACTIVITY_KEY
lower_activity_type = activity_type.lower()
file_name_parts = file_name.lower().split(' ')
# Running
if lower_activity_type == Keys.TYPE_RUNNING_KEY.lower():
# Look for words that indicate that the activity may be from a virtual running service, such as Zwift.
if 'zwift' in file_name_parts:
return Keys.TYPE_VIRTUAL_RUNNING_KEY
return Keys.TYPE_RUNNING_KEY
# Hiking
elif lower_activity_type == Keys.TYPE_HIKING_KEY.lower():
return Keys.TYPE_HIKING_KEY
# Walking
elif lower_activity_type == Keys.TYPE_WALKING_KEY.lower():
return Keys.TYPE_WALKING_KEY
# Virtual Cycling
elif lower_activity_type == Keys.TYPE_CYCLING_KEY.lower() or lower_activity_type == 'biking':
# Look for words that indicate that the activity may be from a virtual cycling service, such as Zwift.
if 'zwift' in file_name_parts:
return Keys.TYPE_VIRTUAL_CYCLING_KEY
if 'rgt' in file_name_parts and 'cyclng' in file_name_parts:
return Keys.TYPE_VIRTUAL_CYCLING_KEY
return Keys.TYPE_CYCLING_KEY
# Swimming
elif lower_activity_type == Keys.TYPE_OPEN_WATER_SWIMMING_KEY.lower():
return Keys.TYPE_OPEN_WATER_SWIMMING_KEY
elif lower_activity_type == Keys.TYPE_POOL_SWIMMING_KEY.lower():
return Keys.TYPE_POOL_SWIMMING_KEY
elif lower_activity_type == 'swimming':
if sub_activity_type is not None and sub_activity_type.lower() == 'lap_swimming':
return Keys.TYPE_POOL_SWIMMING_KEY
return Keys.TYPE_OPEN_WATER_SWIMMING_KEY
# Multisport
elif lower_activity_type == Keys.TYPE_TRIATHLON_KEY:
return Keys.TYPE_TRIATHLON_KEY
elif lower_activity_type == Keys.TYPE_DUATHLON_KEY:
return Keys.TYPE_DUATHLON_KEY
# Didn't match any known activity types, so take a guess from the name.
if 'walk' in file_name_parts or 'walking' in file_name_parts:
return Keys.TYPE_WALKING_KEY
return Keys.TYPE_UNSPECIFIED_ACTIVITY_KEY
def import_gpx_file(self, username, user_id, file_name, desired_activity_id):
"""Imports the specified GPX file."""
"""Caller can request an activity ID by specifying a value to desired_activity_id."""
# Sanity check.
if not os.path.isfile(file_name):
raise Exception("File does not exist.")
# The GPX parser requires a file handle and not a file name.
with open(file_name, 'r') as gpx_file:
# Parse the file.
gpx = gpxpy.parse(gpx_file)
# Figure out the sport type.
activity_type = Keys.TYPE_UNSPECIFIED_ACTIVITY_KEY
if len(gpx.tracks) > 0:
activity_type = Importer.normalize_activity_type(gpx.tracks[0].type, None, file_name)
start_time_unix = 0
if gpx.time is not None:
# Find the start timestamp.
start_time_tuple = gpx.time.timetuple()
start_time_unix = calendar.timegm(start_time_tuple)
# Make sure this is not a duplicate activity.
if self.activity_writer.is_duplicate_activity(user_id, start_time_unix, desired_activity_id):
raise Exception("Duplicate activity.")
# Indicate the start of the activity.
device_str, activity_id = self.activity_writer.create_activity(username, user_id, gpx.name, gpx.description, activity_type, start_time_unix, desired_activity_id)
# We'll store the most recent timecode here.
end_time_unix = 0
locations = []
cadences = []
heart_rate_readings = []
power_readings = []
temperature_readings = []
for track in gpx.tracks:
self.activity_writer.create_activity_track(device_str, activity_id, track.name, track.description)
for segment in track.segments:
for point in segment.points:
# Read the timestamp. Discard any garbage by splitting after the (possible) plus sign.
dt_str = str(point.time).split('+')[0] + " UTC"
if dt_str.find('.') > 1:
dt_obj = datetime.datetime.strptime(dt_str, "%Y-%m-%d %H:%M:%S.%f %Z")
else:
dt_obj = datetime.datetime.strptime(dt_str, "%Y-%m-%d %H:%M:%S %Z")
dt_tuple = dt_obj.timetuple()
dt_unix = calendar.timegm(dt_tuple) * 1000
# Is this the most recent timestamp we've seen?
if dt_unix > end_time_unix:
end_time_unix = dt_unix
# Store the location.
location = []
location.append(dt_unix)
location.append(float(point.latitude))
location.append(float(point.longitude))
location.append(float(point.elevation))
locations.append(location)
# Look for other attributes.
extensions = point.extensions
if 'power' in extensions:
reading = []
reading.append(dt_unix)
reading.append(float(extensions['power']))
power_readings.append(reading)
if 'gpxtpx:TrackPointExtension' in extensions:
gpxtpx_extensions = extensions['gpxtpx:TrackPointExtension']
if 'gpxtpx:hr' in gpxtpx_extensions:
reading = []
reading.append(dt_unix)
reading.append(float(gpxtpx_extensions['gpxtpx:hr']))
heart_rate_readings.append(reading)
if 'gpxtpx:cad' in gpxtpx_extensions:
reading = []
reading.append(dt_unix)
reading.append(float(gpxtpx_extensions['gpxtpx:cad']))
cadences.append(reading)
if 'gpxtpx:atemp' in gpxtpx_extensions:
reading = []
reading.append(dt_unix)
reading.append(float(gpxtpx_extensions['gpxtpx:atemp']))
temperature_readings.append(reading)
# Write all the locations at once.
if locations:
self.activity_writer.create_activity_locations(device_str, activity_id, locations)
# Write all the sensor readings at once.
if cadences:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_CADENCE_KEY, cadences)
if heart_rate_readings:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_HEART_RATE_KEY, heart_rate_readings)
if power_readings:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_POWER_KEY, power_readings)
if temperature_readings:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_TEMP_KEY, temperature_readings)
# Let it be known that we are finished with this activity.
self.activity_writer.finish_activity(activity_id, end_time_unix)
return True, device_str, activity_id
return False, "", ""
def import_tcx_file(self, username, user_id, file_name, original_file_name, desired_activity_id):
"""Imports the specified TCX file."""
"""Caller can request an activity ID by specifying a value to desired_activity_id."""
# Sanity check.
if not os.path.isfile(file_name):
raise Exception("File does not exist.")
# Parse the file.
tree = objectify.parse(file_name)
if tree is None:
raise Exception("Invalid TCX file (no tree node).")
# Get the first node in the XML tree.
root = tree.getroot()
if root is None:
raise Exception("Invalid TCX file (no root node).")
# The interesting stuff starts with an activity.
activity = root.Activities.Activity
activity_type = activity.attrib['Sport']
# Find the start timestamp.
start_time_unix = 0
if hasattr(activity, 'Id'):
# The start time may or may not have milliseconds.
start_time_obj = None
try:
start_time_obj = datetime.datetime.strptime(str(activity.Id), "%Y-%m-%dT%H:%M:%S.%fZ")
except ValueError:
start_time_obj = datetime.datetime.strptime(str(activity.Id), "%Y-%m-%dT%H:%M:%SZ")
if start_time_obj is not None:
start_time_tuple = start_time_obj.timetuple()
start_time_unix = calendar.timegm(start_time_tuple)
# Make sure this is not a duplicate activity.
if self.activity_writer.is_duplicate_activity(user_id, start_time_unix, desired_activity_id):
raise Exception("Duplicate activity.")
# Since we don't have anything else, use the file name as the name of the activity.
activity_name = os.path.splitext(os.path.basename(original_file_name))[0]
# Figure out the type of the activity.
normalized_activity_type = Importer.normalize_activity_type(activity_type, None, activity_name)
# Indicate the start of the activity.
device_str, activity_id = self.activity_writer.create_activity(username, user_id, activity_name, "", normalized_activity_type, start_time_unix, desired_activity_id)
# We'll store the most recent timecode here.
end_time_unix = 0
locations = []
cadences = []
heart_rate_readings = []
power_readings = []
if hasattr(activity, 'Lap'):
for lap in activity.Lap:
if hasattr(lap, 'Track'):
for track in lap.Track:
if hasattr(track, 'Trackpoint'):
for point in track.Trackpoint:
# Read the timestamp, which may or may not have milliseconds.
try:
dt_obj = datetime.datetime.strptime(str(point.Time), "%Y-%m-%dT%H:%M:%S.%fZ")
except ValueError:
dt_obj = datetime.datetime.strptime(str(point.Time), "%Y-%m-%dT%H:%M:%SZ")
dt_tuple = dt_obj.timetuple()
dt_unix = calendar.timegm(dt_tuple) * 1000
dt_unix = dt_unix + dt_obj.microsecond / 1000
# Is this the most recent timestamp we've seen?
if dt_unix > end_time_unix:
end_time_unix = dt_unix
# Store the location.
if hasattr(point, 'Position'):
location = []
location.append(dt_unix)
location.append(float(point.Position.LatitudeDegrees))
location.append(float(point.Position.LongitudeDegrees))
if hasattr(point, 'AltitudeMeters'):
location.append(float(point.AltitudeMeters))
else:
location.append(0.0)
locations.append(location)
# Look for other attributes.
if hasattr(point, 'Cadence'):
reading = []
reading.append(dt_unix)
reading.append(float(point.Cadence))
cadences.append(reading)
if hasattr(point, 'HeartRateBpm'):
reading = []
reading.append(dt_unix)
reading.append(float(point.HeartRateBpm.Value))
heart_rate_readings.append(reading)
if hasattr(point, 'Extensions'):
elements = point.Extensions
children = elements.getchildren()
if len(children) > 0:
subelement = children[0]
if hasattr(subelement, 'Watts'):
reading = []
reading.append(dt_unix)
reading.append(float(subelement.Watts))
power_readings.append(reading)
# Write all the locations at once.
if locations:
self.activity_writer.create_activity_locations(device_str, activity_id, locations)
# Write all the sensor readings at once.
if cadences:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_CADENCE_KEY, cadences)
if heart_rate_readings:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_HEART_RATE_KEY, heart_rate_readings)
if power_readings:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_POWER_KEY, power_readings)
# Let it be known that we are finished with this activity.
self.activity_writer.finish_activity(activity_id, end_time_unix)
return True, device_str, activity_id
def import_fit_file(self, username, user_id, file_name, original_file_name, desired_activity_id):
"""Imports the specified FIT file."""
"""Caller can request an activity ID by specifying a value to desired_activity_id."""
# Sanity check.
if not os.path.isfile(file_name):
raise Exception("File does not exist.")
activity_type = ''
sub_activity_type = ''
start_time_unix = 0
end_time_unix = 0
locations = []
cadences = []
heart_rate_readings = []
power_readings = []
temperatures = []
events = []
fit_file = fitparse.FitFile(file_name, data_processor=fitparse.StandardUnitsDataProcessor())
for message in fit_file.messages:
if not hasattr(message, 'fields'):
continue
fields = message.fields
message_data = {}
for field in fields:
message_data[field.name] = field.value
if 'sport' in message_data and isinstance(message_data['sport'], str):
activity_type = message_data['sport']
if 'sub_sport' in message_data and isinstance(message_data['sub_sport'], str):
sub_activity_type = message_data['sub_sport']
if 'timestamp' not in message_data:
continue
dt_obj = message_data['timestamp']
dt_tuple = dt_obj.timetuple()
dt_unix_seconds = calendar.timegm(dt_tuple)
dt_unix = dt_unix_seconds * 1000
# Update start and end times.
if 'event_type' in message_data and message_data['event_type'] == 'start':
start_time_unix = dt_unix_seconds
end_time_unix = dt_unix_seconds
# If the start has not been found yet, then continue.
if start_time_unix == 0:
continue
# Look for location and sensor data.
if 'position_long' in message_data and 'position_lat' in message_data and message_data['position_lat'] is not None and message_data['position_long'] is not None:
location = []
location.append(dt_unix)
location.append(float(message_data['position_lat']))
location.append(float(message_data['position_long']))
if 'enhanced_altitude' in message_data:
location.append(float(message_data['enhanced_altitude']))
locations.append(location)
if 'cadence' in message_data and message_data['cadence'] is not None:
reading = []
reading.append(dt_unix)
reading.append(float(message_data['cadence']))
cadences.append(reading)
if 'heart_rate' in message_data and message_data['heart_rate'] is not None:
reading = []
reading.append(dt_unix)
reading.append(float(message_data['heart_rate']))
heart_rate_readings.append(reading)
if 'power' in message_data and message_data['power'] is not None:
reading = []
reading.append(dt_unix)
reading.append(float(message_data['power']))
power_readings.append(reading)
if 'temperature' in message_data and message_data['temperature'] is not None:
reading = []
reading.append(dt_unix)
reading.append(float(message_data['temperature']))
temperatures.append(reading)
if 'event' in message_data and message_data['event'] is not None:
events.append(message_data)
# Make sure this is not a duplicate activity.
if self.activity_writer.is_duplicate_activity(user_id, start_time_unix, desired_activity_id):
raise Exception("Duplicate activity.")
# Since we don't have anything else, use the file name as the name of the activity.
activity_name = os.path.splitext(os.path.basename(original_file_name))[0]
# Figure out the type of the activity.
normalized_activity_type = Importer.normalize_activity_type(activity_type, sub_activity_type, activity_name)
# Indicate the start of the activity.
device_str, activity_id = self.activity_writer.create_activity(username, user_id, activity_name, "", normalized_activity_type, start_time_unix, desired_activity_id)
# Write all the locations at once.
if locations:
self.activity_writer.create_activity_locations(device_str, activity_id, locations)
# Write all the sensor readings at once.
if cadences:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_CADENCE_KEY, cadences)
if heart_rate_readings:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_HEART_RATE_KEY, heart_rate_readings)
if power_readings:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_POWER_KEY, power_readings)
if temperatures:
self.activity_writer.create_activity_sensor_readings(activity_id, Keys.APP_TEMP_KEY, temperatures)
if events:
self.activity_writer.create_activity_events(activity_id, events)
# Let it be known that we are finished with this activity.
self.activity_writer.finish_activity(activity_id, end_time_unix)
return True, device_str, activity_id
def import_accelerometer_csv_file(self, username, user_id, file_name, desired_activity_id):
"""Imports a CSV file containing accelerometer data."""
"""Caller can request an activity ID by specifying a value to desired_activity_id."""
# Sanity check.
if not os.path.isfile(file_name):
raise Exception("File does not exist.")
end_time_unix = 0
row_count = 0
device_str = ""
activity_id = ""
with open(file_name) as csv_file:
csv_reader = csv.reader(csv_file, delimiter=',')
for row in csv_reader:
# Skip the header row.
if row_count == 0:
row_count = row_count + 1
continue
ts = float(row[0])
x = float(row[1])
y = float(row[2])
z = float(row[3])
accel_data = [ x, y, z ]
# Is this the most recent timestamp we've seen?
if ts > end_time_unix:
end_time_unix = ts
# Indicate the start of the activity.
if row_count == 1:
device_str, activity_id = self.activity_writer.create_activity(username, user_id, "", "", Keys.TYPE_UNSPECIFIED_ACTIVITY_KEY, ts, desired_activity_id)
self.activity_writer.create_activity_sensor_reading(activity_id, ts, Keys.APP_ACCELEROMETER_KEY, accel_data)
row_count = row_count + 1
# Let it be known that we are finished with this activity.
self.activity_writer.finish_activity(activity_id, end_time_unix)
return True, device_str, activity_id
def import_activity_from_file(self, username, user_id, local_file_name, original_file_name, file_extension, desired_activity_id):
"""Imports the specified file, parsing it based on the provided extension."""
"""Result is {success, device_id, activity_id}."""
"""Caller can request an activity ID by specifying a value to desired_activity_id."""
result = ( False, "", "" )
try:
if file_extension == '.gpx':
result = self.import_gpx_file(username, user_id, local_file_name, desired_activity_id)
elif file_extension == '.tcx':
result = self.import_tcx_file(username, user_id, local_file_name, original_file_name, desired_activity_id)
elif file_extension == '.fit':
result = self.import_fit_file(username, user_id, local_file_name, original_file_name, desired_activity_id)
elif file_extension == '.csv':
result = self.import_accelerometer_csv_file(username, user_id, local_file_name, desired_activity_id)
except:
traceback.print_exc(file=sys.stdout)
logger = logging.getLogger()
logger.error(sys.exc_info()[0])
return result