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'}
11 rows where disposal = "Warning Letter", month = "2025-05" and vehicle_make = "Peugeot" sorted by month descending
This data as json, CSV (advanced)
Suggested facets: vehicle_model, vehicle_colour, second_offence, council_area_raw
offence 5
- Driving without Due Care and Attention 7
- Cause unnecessary obstruction by motor vehicle / trailer outside of the Greater London area 1
- Motor vehicle fail to comply with a non endorsable traffic sign - detected by means other than ACD 1
- Motor vehicle fail to comply with endorsable section 36 traffic sign -other than manned or automatic equipmen 1
- Using a Mobile Phone Whilst Driving 1
council_area 5
- Birmingham 6
- Coventry 2
- Sandwell 1
- Solihull 1
- Wolverhampton 1
reporter_transport_mode 3
- Car 7
- Pedal Bike 3
- Pedestrian 1
vehicle_make 1
- Peugeot · 11 ✖
month 1
- 2025-05 · 11 ✖
disposal 1
- Warning Letter · 11 ✖
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 19278 | op-snap---monthly-publication-may-2025.pdf | 640 | 2025-05 | Car | Peugeot | 307.. | Black | Motor vehicle fail to comply with endorsable section 36 traffic sign -other than manned or automatic equipmen | Nt one | Stirling Road | Stirling Road | Birmingham | Birmingham | Warning Letter | N/A | 52.5499625 | -1.8534448 | ||
| 19306 | op-snap---monthly-publication-may-2025.pdf | 668 | 2025-05 | Pedal Bike | Peugeot | Partner | White | Motor vehicle fail to comply with a non endorsable traffic sign - detected by means other than ACD | None | Stoney Stanton Road | Stoney Stanton Road | Coventry | Coventry | Warning Letter | N/A | 52.4221152 | -1.4959475 | ||
| 19311 | op-snap---monthly-publication-may-2025.pdf | 673 | 2025-05 | Car | Peugeot | 308.. | Grey | Driving without Due Care and Attention | None | Wednesbury Road | Wednesbury Road | Wolverhampton | Wolverhampton | Warning Letter | N/A | ||||
| 19513 | op-snap---monthly-publication-may-2025.pdf | 875 | 2025-05 | Pedal Bike | Peugeot | 3008 | White | Driving without Due Care and Attention | None | Pershore Road | Pershore Road | Birmingham | Birmingham | Warning Letter | N/A | 52.4308271 | -1.920078 | ||
| 19585 | op-snap---monthly-publication-may-2025.pdf | 947 | 2025-05 | Car | Peugeot | 3008 | White | Driving without Due Care and Attention | None | Hamstesd Rd | Hamstesd Road | Birmingham | Birmingham | Warning Letter | N/A | ||||
| 19720 | op-snap---monthly-publication-may-2025.pdf | 1082 | 2025-05 | Pedestrian | Peugeot | Expert | Silver | Cause unnecessary obstruction by motor vehicle / trailer outside of the Greater London area | None | Formans Road | Formans Road | Birmingham | Birmingham | Warning Letter | N/A | 52.4482024 | -1.8507493 | ||
| 20276 | op-snap---monthly-publication-may-2025.pdf | 1638 | 2025-05 | Car | Peugeot | 308 GT | Grey | Using a Mobile Phone Whilst Driving | None | Stratford Road | Stratford Road | Birmingham | Birmingham | Warning Letter | N/A | 52.4203897 | -1.8338574 | ||
| 20324 | op-snap---monthly-publication-may-2025.pdf | 1686 | 2025-05 | Car | Peugeot | 208 | Yellow | Driving without Due Care and Attention | None | Solihull college | Solihull college | Solihull | Solihull | Warning Letter | N/A | 52.410343 | -1.793238 | ||
| 20382 | op-snap---monthly-publication-may-2025.pdf | 1744 | 2025-05 | Pedal Bike | Peugeot | 2008 | Black | Driving without Due Care and Attention | none | Crankhall Lane | Crankhall Lane | Sandwell | Sandwell | Warning Letter | N/A | 52.5489715 | -1.9927402 | ||
| 20387 | op-snap---monthly-publication-may-2025.pdf | 1749 | 2025-05 | Car | Peugeot | E7 | Black | Driving without Due Care and Attention | None | Richmond Road | Richmond Road | Birmingham | Birmingham | Warning Letter | N/A | 52.566947 | -1.8291809 | ||
| 20405 | op-snap---monthly-publication-may-2025.pdf | 1767 | 2025-05 | Car | Peugeot | 208 | Blue | Driving without Due Care and Attention | None | Fosehill Road | Foleshill Road | Coventry | Coventry | Warning Letter | N/A | 52.4274335 | -1.5002381 |
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);