reports
Data license: ODbL · Data source: West Midlands Police
- id
- {'label': 'ID'}
- source_file
- {'label': 'Source PDF'}
- source_page
- {'label': 'Page'}
- source_row
- {'label': 'Row'}
- month
- {'label': 'Month'}
- reporter_transport_mode
- {'label': 'Reporter'}
- vehicle_make
- {'label': 'Make'}
- vehicle_model
- {'label': 'Model'}
- vehicle_colour
- {'label': 'Colour'}
- offence
- {'label': 'Offence'}
- second_offence
- {'label': 'Second offence'}
- offence_location_raw
- {'label': 'Location (raw)'}
- offence_location
- {'label': 'Location'}
- council_area_raw
- {'label': 'Council (raw)'}
- council_area
- {'label': 'Council area'}
- disposal
- {'label': 'Outcome'}
- nfa_rationale
- {'label': 'NFA reason'}
- witness_contacted
- {'label': 'Witness contacted'}
- latitude
- {'label': 'Lat'}
- longitude
- {'label': 'Lng'}
12 rows where council_area = "Solihull", month = "2025-05" and vehicle_make = "Mercedes-Benz" sorted by month descending
This data as json, CSV (advanced)
Suggested facets: vehicle_model, vehicle_colour, nfa_rationale, latitude, longitude
offence 5
reporter_transport_mode 3
- Car 8
- Pedal Bike 2
- Pedestrian 2
disposal 3
- NFA 6
- Education 4
- Warning Letter 2
vehicle_make 1
- Mercedes-Benz · 12 ✖
month 1
- 2025-05 · 12 ✖
council_area 1
- Solihull · 12 ✖
| id | source_file | source_page | source_row | month ▲ | reporter_transport_mode | vehicle_make | vehicle_model | vehicle_colour | offence | second_offence | offence_location_raw | offence_location | council_area_raw | council_area | disposal | nfa_rationale | witness_contacted | latitude | longitude |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 18709 | op-snap---monthly-publication-may-2025.pdf | 71 | 2025-05 | Car | Mercedes-Benz | GLC | Black | Contravening a Red Traffic Light | None | Stratford Road | Stratford Road | Solihull | Solihull | NFA | Outside of 14 Days NIP | 52.4191184 | -1.8326637 | ||
| 18922 | op-snap---monthly-publication-may-2025.pdf | 284 | 2025-05 | Pedal Bike | Mercedes-Benz | C220 | Black | Driving without Reasonable Consideration | None | Hampton Lane | Hampton Lane | Solihull | Solihull | Education | N/A | 52.4190728 | -1.7449943 | ||
| 19326 | op-snap---monthly-publication-may-2025.pdf | 688 | 2025-05 | Pedal Bike | Mercedes-Benz | GLE | Grey | Driving without Reasonable Consideration | None | Hampton Road | Hampton Road | Solihull | Solihull | Education | N/A | 52.3985342 | -1.7240581 | ||
| 19549 | op-snap---monthly-publication-may-2025.pdf | 911 | 2025-05 | Car | Mercedes-Benz | Sprinter | White | Driving without Due Care and Attention | None | M42 Northbound | M42 Northbound | Solihull | Solihull | Education | N/A | ||||
| 19584 | op-snap---monthly-publication-may-2025.pdf | 946 | 2025-05 | Car | Mercedes-Benz | A Class | Black | Driving without Due Care and Attention | None | Sharmans Cross Road | Sharmans Cross Road | Solihull | Solihull | Warning Letter | N/A | 52.4167172 | -1.7990388 | ||
| 19613 | op-snap---monthly-publication-may-2025.pdf | 975 | 2025-05 | Car | Mercedes-Benz | GLA 220. | Black | Driving without Due Care and Attention | None | Solihull Bypass | Solihull Bypass | Solihull | Solihull | Education | N/A | 52.4207529 | -1.7757467 | ||
| 20023 | op-snap---monthly-publication-may-2025.pdf | 1385 | 2025-05 | Pedestrian | Mercedes-Benz | NP | Black | Cause unnecessary obstruction by motor vehicle / trailer outside of the Greater London area | None | ARDEN CROFT ROAD | Arden Croft Road | Solihull | Solihull | NFA | Outside of 14 Days NIP | ||||
| 20026 | op-snap---monthly-publication-may-2025.pdf | 1388 | 2025-05 | Car | Mercedes-Benz | NP | Black | Cause unnecessary obstruction by motor vehicle / trailer outside of the Greater London area | None | Valley road | Valley road | Solihull | Solihull | NFA | Outside of 14 Days NIP | 52.4504776 | -1.7682084 | ||
| 20065 | op-snap---monthly-publication-may-2025.pdf | 1427 | 2025-05 | Car | Mercedes-Benz | GI 200 | Blue | Driving without Due Care and Attention | None | Stratford road | Stratford road | Solihull | Solihull | NFA | Outside of 14 Days NIP | 52.4191184 | -1.8326637 | ||
| 20172 | op-snap---monthly-publication-may-2025.pdf | 1534 | 2025-05 | Car | Mercedes-Benz | spinter | White | Contravening a Red Traffic Light | None | Aldermans Green Road | Aldermans Green Road | Solihull | Solihull | NFA | Misc Inc Crimes | ||||
| 20307 | op-snap---monthly-publication-may-2025.pdf | 1669 | 2025-05 | Car | Mercedes-Benz | A180 | Red | Misc - Non Traffic Offences | None | Wood Lane | Wood Lane | Solihull | Solihull | NFA | No VRM | 52.4018937 | -1.7126088 | ||
| 20314 | op-snap---monthly-publication-may-2025.pdf | 1676 | 2025-05 | Pedestrian | Mercedes-Benz | White | Contravening a Red Traffic Light | None | St Bernard Road | Street Bernard Road | Solihull | Solihull | Warning Letter | N/A |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE reports (
id INTEGER PRIMARY KEY AUTOINCREMENT,
source_file TEXT NOT NULL,
source_page INTEGER,
source_row INTEGER,
month TEXT NOT NULL,
reporter_transport_mode TEXT,
vehicle_make TEXT,
vehicle_model TEXT,
vehicle_colour TEXT,
offence TEXT,
second_offence TEXT,
offence_location_raw TEXT,
offence_location TEXT,
council_area_raw TEXT,
council_area TEXT,
disposal TEXT,
nfa_rationale TEXT,
witness_contacted TEXT
, latitude REAL, longitude REAL);
CREATE INDEX idx_month ON reports(month);
CREATE INDEX idx_council_area ON reports(council_area);
CREATE INDEX idx_offence ON reports(offence);
CREATE INDEX idx_disposal ON reports(disposal);
CREATE INDEX idx_location ON reports(offence_location);