-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcolumn_identifier.py
More file actions
34 lines (28 loc) · 929 Bytes
/
column_identifier.py
File metadata and controls
34 lines (28 loc) · 929 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
34
"""Description of the used columns names in PedPy."""
from typing import Final
ID_COL: Final = "id"
FRAME_COL: Final = "frame"
X_COL: Final = "x"
Y_COL: Final = "y"
POINT_COL: Final = "point"
DENSITY_COL: Final = "density"
POLYGON_COL: Final = "polygon"
INTERSECTION_COL: Final = "intersection"
COUNT_COL: Final = "num_peds"
CUMULATED_COL: Final = "cumulative_pedestrians"
TIME_COL: Final = "time"
SPEED_COL: Final = "speed"
V_X_COL: Final = "v_x"
V_Y_COL: Final = "v_y"
FLOW_COL: Final = "flow"
MEAN_SPEED_COL: Final = "mean_speed"
FIRST_FRAME_COL: Final = "entering_frame"
LAST_FRAME_COL: Final = "leaving_frame"
NEIGHBORS_COL: Final = "neighbors"
DISTANCE_COL: Final = "distance"
CROSSING_FRAME_COL: Final = "crossing_frame"
START_POSITION_COL: Final = "start_position"
END_POSITION_COL: Final = "end_position"
WINDOW_SIZE_COL: Final = "window_size"
INTRUSION_COL: Final = "intrusion"
AVOIDANCE_COL: Final = "avoidance"