Ziyuan111 commited on
Commit
6e1d1d7
·
verified ·
1 Parent(s): b97823c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -33
README.md CHANGED
@@ -65,41 +65,45 @@ The dataset was curated to provide a resource for stakeholders to understand and
65
 
66
  A typical entry in the dataset might look like the following (example in JSON format):
67
 
 
68
  ```json
69
  {
70
-   "accident_id": "XYZ123",
71
-   "timestamp": "2015-08-21T14:30:00Z",
72
-   "location": {
73
-     "latitude": 43.1566,
74
-     "longitude": -77.6088
75
-   },
76
-   "severity": "Moderate",
77
-   "weather_condition": "Clear",
78
-   "road_type": "Highway",
79
-   "vehicles_involved": 2,
80
-   "contributing_factors": ["Speeding", "Distracted Driving"]
81
  }
 
 
 
82
  {
83
-   "injury_types": ["None", "Minor", "Severe"],
84
-   "involved_parties": {
85
-     "drivers": [
86
-       {
87
-         "age": 35,
88
-         "gender": "Female",
89
-         "driving_experience": "10 years"
90
-       },
91
-       {
92
-         "age": 22,
93
-         "gender": "Male",
94
-         "driving_experience": "2 years"
95
-       }
96
-     ],
97
-     "pedestrians": []
98
-   },
99
-   "collision_type": "Rear-end",
100
-   "law_enforcement_response": {
101
-     "response_time": "5 minutes",
102
-     "actions_taken": ["Traffic control", "Medical assistance"]
103
-   }
104
  }
105
- '''
 
65
 
66
  A typical entry in the dataset might look like the following (example in JSON format):
67
 
68
+
69
  ```json
70
  {
71
+ "accident_id": "XYZ123",
72
+ "timestamp": "2015-08-21T14:30:00Z",
73
+ "location": {
74
+ "latitude": 43.1566,
75
+ "longitude": -77.6088
76
+ },
77
+ "severity": "Moderate",
78
+ "weather_condition": "Clear",
79
+ "road_type": "Highway",
80
+ "vehicles_involved": 2,
81
+ "contributing_factors": ["Speeding", "Distracted Driving"]
82
  }
83
+ ```
84
+ Additional fields in the dataset may include but are not limited to:
85
+ ```jason
86
  {
87
+ "injury_types": ["None", "Minor", "Severe"],
88
+ "involved_parties": {
89
+ "drivers": [
90
+ {
91
+ "age": 35,
92
+ "gender": "Female",
93
+ "driving_experience": "10 years"
94
+ },
95
+ {
96
+ "age": 22,
97
+ "gender": "Male",
98
+ "driving_experience": "2 years"
99
+ }
100
+ ],
101
+ "pedestrians": []
102
+ },
103
+ "collision_type": "Rear-end",
104
+ "law_enforcement_response": {
105
+ "response_time": "5 minutes",
106
+ "actions_taken": ["Traffic control", "Medical assistance"]
107
+ }
108
  }
109
+ ```