home / opsnap

reports

Each row is one public submission to Operation Snap. Includes the offence, vehicle details, location, and outcome.

Disposal outcomes: Education (driver awareness course), Warning Letter, Fixed Penalty (fine), Court (prosecution), NFA (no further action).

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'}

15 rows where month = "2025-03", offence = "Using a Mobile Phone Whilst Driving" and vehicle_make = "Ford" sorted by month descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: vehicle_model, vehicle_colour, second_offence, council_area_raw, nfa_rationale

council_area 6

  • Birmingham 8
  • Coventry 3
  • Dudley 1
  • Out of Force Area 1
  • Solihull 1
  • Walsall 1

reporter_transport_mode 3

  • Pedal Bike 9
  • Car 5
  • Pedestrian 1

disposal 3

  • Fixed Penalty 11
  • NFA 3
  • Court 1

vehicle_make 1

  • Ford · 15 ✖

offence 1

  • Using a Mobile Phone Whilst Driving · 15 ✖

month 1

  • 2025-03 · 15 ✖
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
16304 op-snap---monthly-publication-march-2025.pdf   61 2025-03 Car Ford Focus White Using a Mobile Phone Whilst Driving None Bunbury Road, Northfield Bunbury Road, Northfield Birmingham Birmingham Fixed Penalty N/A Yes - Via Email 52.4142089 -1.9587147
16350 op-snap---monthly-publication-march-2025.pdf   107 2025-03 Car Ford Transit White Using a Mobile Phone Whilst Driving None Mappleborough Green Mappleborough Green Out of Force Area Out of Force Area NFA Out of Force Yes - Via Email 52.402696 -1.8478197
16593 op-snap---monthly-publication-march-2025.pdf   350 2025-03 Pedal Bike Ford Transit White Using a Mobile Phone Whilst Driving None Bell Green Road Bell Green Road Coventry Coventry Fixed Penalty N/A Yes - Via Email 52.4324855 -1.4815548
16717 op-snap---monthly-publication-march-2025.pdf   474 2025-03 Car Ford KA Black Using a Mobile Phone Whilst Driving Driving without Due Care and Attention Langley Road Langley Road Dudley Dudley Court N/A Yes - Via Email    
17083 op-snap---monthly-publication-march-2025.pdf   840 2025-03 Pedal Bike Ford Kuga White Using a Mobile Phone Whilst Driving None Brandon Road Brandon Road Coventry Coventry NFA Not in Public Interest Yes - Via Email 52.399222 -1.4414386
17137 op-snap---monthly-publication-march-2025.pdf   894 2025-03 Pedal Bike Ford Fiesta Blue Using a Mobile Phone Whilst Driving None Aston Webb Boulevard Aston Webb Boulevard Birmingham Birmingham Fixed Penalty N/A Yes - Via Email 52.4468506 -1.9395619
17158 op-snap---monthly-publication-march-2025.pdf   915 2025-03 Pedal Bike Ford S-MAX Black Using a Mobile Phone Whilst Driving None Bradford Street Bradford Street Birmingham Birmingham Fixed Penalty N/A Yes - Via Email 52.4708802 -1.8792135
17224 op-snap---monthly-publication-march-2025.pdf   981 2025-03 Car Ford Transit White Using a Mobile Phone Whilst Driving None Long Meadow Crescent Long Meadow Crescent Birmingham Birmingham Fixed Penalty N/A Yes - Via Email    
17500 op-snap---monthly-publication-march-2025.pdf   1257 2025-03 Car Ford Transit Blue Using a Mobile Phone Whilst Driving None M42 J6 M42 J6 Solihull Solihull Fixed Penalty N/A Yes - Via Email    
17619 op-snap---monthly-publication-march-2025.pdf   1376 2025-03 Pedal Bike Ford C-max Grey Using a Mobile Phone Whilst Driving None Park Hill Road Park Hill Road Birmingham Birmingham Fixed Penalty N/A Yes - Via Email 52.4612518 -1.9515542
17695 op-snap---monthly-publication-march-2025.pdf   1452 2025-03 Pedal Bike Ford Focus Grey Using a Mobile Phone Whilst Driving None Augustus Road Augustus Road Birmingham Birmingham Fixed Penalty N/A Yes - Via Email 52.4695793 -1.9378608
17808 op-snap---monthly-publication-march-2025.pdf   1565 2025-03 Pedal Bike Ford Focus Silver Using a Mobile Phone Whilst Driving None Harborne High Street Harborne High Street Birmingham Birmingham Fixed Penalty N/A Yes - Via Email 52.459563 -1.946922
18302 op-snap---monthly-publication-march-2025.pdf   2059 2025-03 Pedestrian Ford Transit White Using a Mobile Phone Whilst Driving None Daw End Lane Daw End Lane Walsall Walsall Fixed Penalty N/A Yes - Via Email 52.6068849 -1.9611652
18370 op-snap---monthly-publication-march-2025.pdf   2127 2025-03 Pedal Bike Ford EDGE Silver Using a Mobile Phone Whilst Driving None WOODWAY LANE Woodway Lane Coventry Coventry Fixed Penalty N/A Yes - Via Email 52.4275505 -1.4448681
18562 op-snap---monthly-publication-march-2025.pdf   2319 2025-03 Pedal Bike Ford Fiesta Black Using a Mobile Phone Whilst Driving None Lordswood Road Lordswood Road Birmingham Birmingham NFA No Offence Yes - Via Email 52.4591339 -1.9601054

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);