-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconstants.py
More file actions
33 lines (32 loc) · 864 Bytes
/
constants.py
File metadata and controls
33 lines (32 loc) · 864 Bytes
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
PARSE_CSV_HEADER = ["timestamp", # TODO change this to "timestamp_str"
"latitude",
"longitude",
"altitude",
"fix-type",
"satellites",
"sdn",
"sde",
"sdu",
"sdne",
"sdeu",
"sdun",
"age",
"ratio"
]
CALC_CSV_HEADER = [
"timestamp", # UTC time (float)
"timestamp_str",
"fix_type",
"latitude",
"latitude_processed",
"longitude",
"longitude_processed",
"altitude", # meters
"velocity", # 2d vector
"speed", # scalar (abs val of vector)
"acceleration_vector",
"acceleration_magnitude",
"horizontal_accuracy",
"vertical_accuracy",
"speed_accuracy"
]