-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrafficSignDict.py
More file actions
51 lines (49 loc) · 1.21 KB
/
TrafficSignDict.py
File metadata and controls
51 lines (49 loc) · 1.21 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
'''
Created on Jan 30, 2017
@author: Jendrik
'''
trafficSignDict = {
0: "Speed Limit 20",
1: "Speed Limit 30",
2: "Speed Limit 50",
3: "Speed Limit 40",
4: "Speed Limit 70",
5: "Speed Limit 80",
6: "Lift Speed Limit 80",
7: "Speed Limit 100",
8: "Speed Limit 120",
9: "Overtaking Forbidden",
10: "Overtaking Forbidden Lorries",
11: "Right Of Way Now",
12: "Right Of Way Street",
13: "Give Way",
14: "Stop",
15: "Drive-Through Forbidden",
16: "Lorries Forbidden",
17: "Entering Forbidden",
18: "Attention",
19: "Sharp Curve Left",
20: "Sharp Curve Right",
21: "Multiple Sharpe Curves",
22: "Bumps",
23: "Slippy Road",
24: "Road Narrows",
25: "Roadworks",
26: "Traffic Light",
27: "Pedestrians",
28: "Children Playing",
29: "Cyclists",
30: "Frost",
31: "Game Pass",
32: "All Restrictions Lifted",
33: "Go Right",
34: "Go Left",
35: "Go Straight",
36: "Go Straight or Right",
37: "Go Straight or Left",
38: "Go Right Around Obstacle",
39: "Go Left Around Obstacle",
40: "Roundabout",
41: "Overtaking allowed again",
42: "Lorries are allowed to overtake again"
}