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'}
13 rows where month = "2026-01", offence = "Contravening a Red Traffic Light" and vehicle_make = "Ford" sorted by month descending
This data as json, CSV (advanced)
Suggested facets: vehicle_model, vehicle_colour, second_offence, council_area_raw, nfa_rationale
council_area 6
- Birmingham 5
- Wolverhampton 3
- Coventry 2
- Dudley 1
- Out of Force Area 1
- Sandwell 1
disposal 4
- Education 6
- Fixed Penalty 3
- NFA 2
- Warning Letter 2
vehicle_make 1
- Ford · 13 ✖
offence 1
- Contravening a Red Traffic Light · 13 ✖
month 1
- 2026-01 · 13 ✖
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10738 | op-snap---monthly-publication-january-2026.pdf | 199 | 2026-01 | Car | Ford | Transit | White | Contravening a Red Traffic Light | None | A454 Black Country Route | Black Country Route | Wolverhampton | Wolverhampton | Education | N/A | 52.5642677 | -2.0755469 | ||
| 10743 | op-snap---monthly-publication-january-2026.pdf | 204 | 2026-01 | Car | Ford | Ranger | Red | Contravening a Red Traffic Light | None | A45 Coventry - Jct of Tile Hill Lane | Coventry - Junction of Tile Hill Lane | Coventry | Coventry | Education | N/A | ||||
| 10983 | op-snap---monthly-publication-january-2026.pdf | 444 | 2026-01 | Car | Ford | Transit | White | Contravening a Red Traffic Light | none | London Road | London Road | Coventry | Coventry | Fixed Penalty | N/A | 52.3916468 | -1.4925995 | ||
| 11214 | op-snap---monthly-publication-january-2026.pdf | 675 | 2026-01 | Car | Ford | Focus | Red | Contravening a Red Traffic Light | None | Telford Town Centre | Telford Town Centre | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 11421 | op-snap---monthly-publication-january-2026.pdf | 882 | 2026-01 | Car | Ford | Fiesta | Grey | Contravening a Red Traffic Light | None | High St West Brom | High Street West Brom | Sandwell | Sandwell | Education | N/A | ||||
| 11452 | op-snap---monthly-publication-january-2026.pdf | 913 | 2026-01 | Car | Ford | Transit | White | Contravening a Red Traffic Light | None | Tamworth Road | Tamworth Road | Birmingham | Birmingham | Warning Letter | N/A | 52.5724303 | -1.8191247 | ||
| 11654 | op-snap---monthly-publication-january-2026.pdf | 1115 | 2026-01 | Car | Ford | Focus | Black | Contravening a Red Traffic Light | None | Springfield Road | Springfield Road | Birmingham | Birmingham | Fixed Penalty | N/A | 52.4327486 | -1.8844997 | ||
| 11681 | op-snap---monthly-publication-january-2026.pdf | 1142 | 2026-01 | Car | Ford | Ranger | Black | Contravening a Red Traffic Light | None | Venture Way | Venture Way | Dudley | Dudley | Fixed Penalty | N/A | 52.4836603 | -2.1189326 | ||
| 11761 | op-snap---monthly-publication-january-2026.pdf | 1222 | 2026-01 | Car | Ford | Transit | Silver | Contravening a Red Traffic Light | None | Alcester Road South | Alcester Road South | Birmingham | Birmingham | Education | N/A | 52.4170522 | -1.8906187 | ||
| 11776 | op-snap---monthly-publication-january-2026.pdf | 1237 | 2026-01 | Car | Ford | Transit | Grey | Contravening a Red Traffic Light | None | Minworth Island | Minworth Island | Birmingham | Birmingham | Warning Letter | N/A | 52.5316279 | -1.7762358 | ||
| 11859 | op-snap---monthly-publication-january-2026.pdf | 1320 | 2026-01 | Other | Ford | Transit | White | Contravening a Red Traffic Light | None | Avenue road | Avenue road | Birmingham | Birmingham | NFA | No Independent Evidence Available | 52.4941712 | -1.8795158 | ||
| 11889 | op-snap---monthly-publication-january-2026.pdf | 1350 | 2026-01 | Car | Ford | Transit | White | Contravening a Red Traffic Light | None | Goldthorn Hill | Goldthorn Hill | Wolverhampton | Wolverhampton | Education | N/A | 52.5690522 | -2.1388773 | ||
| 11894 | op-snap---monthly-publication-january-2026.pdf | 1355 | 2026-01 | Car | Ford | Transit | White | Contravening a Red Traffic Light | None | Stafford Road | Stafford Road | Wolverhampton | Wolverhampton | Education | N/A | 52.6291998 | -2.126312 |
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);