-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathaverage.py
65 lines (49 loc) · 1.62 KB
/
average.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
# -*- coding: UTF-8 -*-
"""
Average time of the Porto tracks dataset
"""
import argparse
import csv
import sys
import numpy as np
"""
Parameters:
* input: Input path (CSV with ; delimiter)
Execution:
python average.py -input mallorca.csv
"""
parser = argparse.ArgumentParser(description='Average')
parser.add_argument('-input', metavar='input', type=str, default='')
args = parser.parse_args()
csv.field_size_limit(sys.maxsize)
def format_track(track):
"""
Format track from String to coordinates list
:param track: Track as a string
:return: Track as a Python list of coordinates
"""
new_track = []
for point in track.split('[[')[1].split(']]')[0].split('], ['):
new_track.append([float(n) for n in point.split(', ')])
return new_track
def main():
try:
if not ('.csv' in args.input): raise Exception('input_format')
with open(args.input, 'rb') as input:
reader = csv.reader(input, delimiter=';')
reader.next()
n_points = []
for track in reader:
n_points.append(len(format_track(track[0])))
av_points = np.mean(n_points)
print('n_points: {}'.format(n_points))
print('Average points: {}'.format(av_points))
print('Average time: {} min'.format((av_points * 15) / 60))
except IOError:
print('File not found!')
except Exception as e:
if e.args[0] == 'input_format': print('Input must be a CSV file')
else:
print('Unexpected error: {}'.format(sys.exc_info()[0]))
raise
if __name__ == '__main__': main()