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 = "Out of Force Area", month = "2025-09" and reporter_transport_mode = "Pedal Bike" sorted by month descending
This data as json, CSV (advanced)
Suggested facets: vehicle_colour
vehicle_make 11
reporter_transport_mode 1
- Pedal Bike · 12 ✖
month 1
- 2025-09 · 12 ✖
disposal 1
- NFA 12
council_area 1
- Out of Force Area · 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 23820 | op-snap---monthly-publication-september-2025.pdf | 39 | 2025-09 | Pedal Bike | Skoda | SUV | Grey | Driving without Due Care and Attention | None | Weston Road Evesham | Weston Road Evesham | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 23946 | op-snap---monthly-publication-september-2025.pdf | 165 | 2025-09 | Pedal Bike | Mitsubishi | L200 | Red | Driving without Due Care and Attention | None | Hereford | Hereford | Out of Force Area | Out of Force Area | NFA | Out of Force | 52.4047807 | -2.0101216 | ||
| 23964 | op-snap---monthly-publication-september-2025.pdf | 183 | 2025-09 | Pedal Bike | Mercedes-Benz | C220 | Grey | Driving without Due Care and Attention | None | Evesham | Evesham | Out of Force Area | Out of Force Area | NFA | Out of Force | 52.3837388 | -1.5529669 | ||
| 24131 | op-snap---monthly-publication-september-2025.pdf | 350 | 2025-09 | Pedal Bike | Isuzu | truck | Red | Driving without Due Care and Attention | None | B4234 Bishopswood Village, Staffordshire | Bishopswood Village, Staffordshire | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 24174 | op-snap---monthly-publication-september-2025.pdf | 393 | 2025-09 | Pedal Bike | Audi | A5 | White | Driving without Due Care and Attention | None | Harbury Lane | Harbury Lane | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 24186 | op-snap---monthly-publication-september-2025.pdf | 405 | 2025-09 | Pedal Bike | Toyota | Yaris | Red | Driving without Due Care and Attention | None | Bibury Road Cheltenham | Bibury Road Cheltenham | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 24289 | op-snap---monthly-publication-september-2025.pdf | 508 | 2025-09 | Pedal Bike | Volvo | V40 | Blue | Driving without Reasonable Consideration | None | Henwick Road | Henwick Road | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 24578 | op-snap---monthly-publication-september-2025.pdf | 797 | 2025-09 | Pedal Bike | Peugeot | 308 | Silver | Driving without Reasonable Consideration | None | Marston Lane | Marston Lane | Out of Force Area | Out of Force Area | NFA | Out of Force | 52.4670062 | -1.7548427 | ||
| 24617 | op-snap---monthly-publication-september-2025.pdf | 836 | 2025-09 | Pedal Bike | Nissan | Qashqai | Silver | Driving without Due Care and Attention | None | B1190 / A46 in Lincolnshire | B1190 / A46 in Lincolnshire | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 24790 | op-snap---monthly-publication-september-2025.pdf | 1009 | 2025-09 | Pedal Bike | Bova Futura | Blue | Driving without Due Care and Attention | None | Rugby Road | Rugby Road | Out of Force Area | Out of Force Area | NFA | Out of Force | 52.4648068 | -2.1642076 | |||
| 24837 | op-snap---monthly-publication-september-2025.pdf | 1056 | 2025-09 | Pedal Bike | Dacia | Duster | Black | Driving without Due Care and Attention | None | Barton Lane towards Apeton, Staffs | Barton Lane towards Apeton, Staffs | Out of Force Area | Out of Force Area | NFA | Out of Force | ||||
| 24861 | op-snap---monthly-publication-september-2025.pdf | 1080 | 2025-09 | Pedal Bike | Ford | Ka | White | Driving without Due Care and Attention | None | Bridgewater Road Stratford | Bridgewater Road Stratford | Out of Force Area | Out of Force Area | NFA | Out of Force |
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);