AndrewRWilliams commited on
Commit
7e0adbb
1 Parent(s): 72ce073

upload traffic data

Browse files
.gitattributes CHANGED
@@ -56,3 +56,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
56
  # Video files - compressed
57
  *.mp4 filter=lfs diff=lfs merge=lfs -text
58
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
56
  # Video files - compressed
57
  *.mp4 filter=lfs diff=lfs merge=lfs -text
58
  *.webm filter=lfs diff=lfs merge=lfs -text
59
+ traffic_merged_sensor_data.csv filter=lfs diff=lfs merge=lfs -text
traffic_merged_sensor_data.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fb160963102d271993349de2bad9c339ed68925b1965246892eea6c129a9f2b
3
+ size 304418602
traffic_metadata.json ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Hour": {
3
+ "description": "The hour of the day when the data was recorded",
4
+ "data_type": "object (datetime-like string)",
5
+ "unit": null
6
+ },
7
+ "sensor_id": {
8
+ "description": "Unique identifier for the sensor",
9
+ "data_type": "int64",
10
+ "unit": null
11
+ },
12
+ "Occupancy (%)": {
13
+ "description": "Percentage of the road occupied by vehicles",
14
+ "data_type": "float64",
15
+ "unit": "percent"
16
+ },
17
+ "Speed (mph)": {
18
+ "description": "Average speed of vehicles",
19
+ "data_type": "float64",
20
+ "unit": "miles per hour"
21
+ },
22
+ "Lane 1 Occ (%)": {
23
+ "description": "Percentage occupancy of Lane 1",
24
+ "data_type": "float64",
25
+ "unit": "percent"
26
+ },
27
+ "Lane 1 Speed (mph)": {
28
+ "description": "Average speed of vehicles in Lane 1",
29
+ "data_type": "float64",
30
+ "unit": "miles per hour"
31
+ },
32
+ "Lane 2 Occ (%)": {
33
+ "description": "Percentage occupancy of Lane 2",
34
+ "data_type": "float64",
35
+ "unit": "percent"
36
+ },
37
+ "Lane 2 Speed (mph)": {
38
+ "description": "Average speed of vehicles in Lane 2",
39
+ "data_type": "float64",
40
+ "unit": "miles per hour"
41
+ },
42
+ "Lane 3 Occ (%)": {
43
+ "description": "Percentage occupancy of Lane 3",
44
+ "data_type": "float64",
45
+ "unit": "percent"
46
+ },
47
+ "Lane 3 Speed (mph)": {
48
+ "description": "Average speed of vehicles in Lane 3",
49
+ "data_type": "float64",
50
+ "unit": "miles per hour"
51
+ },
52
+ "Lane 4 Occ (%)": {
53
+ "description": "Percentage occupancy of Lane 4",
54
+ "data_type": "float64",
55
+ "unit": "percent"
56
+ },
57
+ "Lane 4 Speed (mph)": {
58
+ "description": "Average speed of vehicles in Lane 4",
59
+ "data_type": "float64",
60
+ "unit": "miles per hour"
61
+ },
62
+ "Lane 5 Occ (%)": {
63
+ "description": "Percentage occupancy of Lane 5",
64
+ "data_type": "float64",
65
+ "unit": "percent"
66
+ },
67
+ "Lane 5 Speed (mph)": {
68
+ "description": "Average speed of vehicles in Lane 5",
69
+ "data_type": "float64",
70
+ "unit": "miles per hour"
71
+ },
72
+ "Fwy": {
73
+ "description": "Freeway number where the sensor is located",
74
+ "data_type": "object",
75
+ "unit": null
76
+ },
77
+ "District": {
78
+ "description": "District number where the sensor is located",
79
+ "data_type": "int64",
80
+ "unit": null
81
+ },
82
+ "County": {
83
+ "description": "County where the sensor is located",
84
+ "data_type": "object",
85
+ "unit": null
86
+ },
87
+ "City": {
88
+ "description": "City where the sensor is located",
89
+ "data_type": "object",
90
+ "unit": null
91
+ },
92
+ "CA PM": {
93
+ "description": "California postmile marker",
94
+ "data_type": "object",
95
+ "unit": null
96
+ },
97
+ "Abs PM": {
98
+ "description": "Absolute postmile marker",
99
+ "data_type": "float64",
100
+ "unit": "miles"
101
+ },
102
+ "Length": {
103
+ "description": "Length of the segment where the sensor is located",
104
+ "data_type": "float64",
105
+ "unit": "miles"
106
+ },
107
+ "Name": {
108
+ "description": "Name of the sensor or the location",
109
+ "data_type": "object",
110
+ "unit": null
111
+ },
112
+ "Lanes": {
113
+ "description": "Number of lanes monitored by the sensor",
114
+ "data_type": "int64",
115
+ "unit": null
116
+ },
117
+ "Type": {
118
+ "description": "Type of road or segment (e.g., freeway, highway)",
119
+ "data_type": "object",
120
+ "unit": null
121
+ },
122
+ "Sensor Type": {
123
+ "description": "Type of sensor used (e.g., loop, radar)",
124
+ "data_type": "object",
125
+ "unit": null
126
+ }
127
+ }