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-11", offence = "Using a Mobile Phone Whilst Driving" and vehicle_make = "Mercedes-Benz" sorted by month descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: vehicle_model, vehicle_colour, second_offence, offence_location_raw, offence_location, council_area_raw, nfa_rationale, latitude, longitude

reporter_transport_mode 3

  • Car 7
  • Pedal Bike 7
  • Other 1

disposal 3

  • Fixed Penalty 9
  • NFA 5
  • Court 1

council_area 3

  • Birmingham 10
  • Coventry 3
  • Out of Force Area 2

vehicle_make 1

  • Mercedes-Benz · 15 ✖

offence 1

  • Using a Mobile Phone Whilst Driving · 15 ✖

month 1

  • 2025-11 · 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
20533 op-snap---monthly-publication-november-2025.pdf   75 2025-11 Car Mercedes-Benz Sprinter White Using a Mobile Phone Whilst Driving None M6 M6 Birmingham Birmingham NFA No Independent Evidence Available      
20555 op-snap---monthly-publication-november-2025.pdf   97 2025-11 Car Mercedes-Benz Sprinter White Using a Mobile Phone Whilst Driving None Belmont Row Belmont Row Birmingham Birmingham NFA No Independent Evidence Available   52.4840765 -1.8819479
20590 op-snap---monthly-publication-november-2025.pdf   132 2025-11 Other Mercedes-Benz A180.. Silver Using a Mobile Phone Whilst Driving No Insurance Newton Road Newton Road Birmingham Birmingham Fixed Penalty N/A   52.4541102 -1.8710993
20704 op-snap---monthly-publication-november-2025.pdf   246 2025-11 Pedal Bike Mercedes-Benz E250 Silver Using a Mobile Phone Whilst Driving None Far Gosford St Far Gosford Street Coventry Coventry Fixed Penalty N/A   52.4071231 -1.4985178
20713 op-snap---monthly-publication-november-2025.pdf   255 2025-11 Car Mercedes-Benz A Class White Using a Mobile Phone Whilst Driving None Sutton New Road Sutton New Road Birmingham Birmingham NFA No Independent Evidence Available   52.5260956 -1.8379401
20823 op-snap---monthly-publication-november-2025.pdf   365 2025-11 Pedal Bike Mercedes-Benz Sprinter White Using a Mobile Phone Whilst Driving None Aston Webb Boulevard Aston Webb Boulevard Birmingham Birmingham Fixed Penalty N/A   52.4468506 -1.9395619
21037 op-snap---monthly-publication-november-2025.pdf   579 2025-11 Car Mercedes-Benz   Black Using a Mobile Phone Whilst Driving None Brighton Road Brighton Road Out of Force Area Out of Force Area NFA Out of Force   52.4543156 -1.8840717
21065 op-snap---monthly-publication-november-2025.pdf   607 2025-11 Car Mercedes-Benz EQE Black Using a Mobile Phone Whilst Driving None M1. M1 Out of Force Area Out of Force Area NFA Out of Force      
21110 op-snap---monthly-publication-november-2025.pdf   652 2025-11 Pedal Bike Mercedes-Benz C220.. White Using a Mobile Phone Whilst Driving None A45 at Sir Henry Parkes Drive A45 at Sir Henry Parkes Drive Coventry Coventry Fixed Penalty N/A      
21505 op-snap---monthly-publication-november-2025.pdf   1047 2025-11 Pedal Bike Mercedes-Benz E220 White Using a Mobile Phone Whilst Driving None Harborne Road Harborne Road Birmingham Birmingham Fixed Penalty N/A   52.4718503 -1.9195423
21524 op-snap---monthly-publication-november-2025.pdf   1066 2025-11 Car Mercedes-Benz B Class Black Using a Mobile Phone Whilst Driving None Holliday Street Holliday Street Birmingham Birmingham Fixed Penalty N/A   52.4780205 -1.9047506
21683 op-snap---monthly-publication-november-2025.pdf   1225 2025-11 Car Mercedes-Benz CLA Blue Using a Mobile Phone Whilst Driving Driving without Due Care and Attention Hagley Road / Portland Road Hagley Road / Portland Road Birmingham Birmingham Court N/A   52.471836 -1.9401037
21703 op-snap---monthly-publication-november-2025.pdf   1245 2025-11 Pedal Bike Mercedes-Benz C250 Silver Using a Mobile Phone Whilst Driving None Bell Green Lane Bell Green Lane Coventry Coventry Fixed Penalty N/A   52.3995055 -1.5349094
21860 op-snap---monthly-publication-november-2025.pdf   1402 2025-11 Pedal Bike Mercedes-Benz GLA180 Black Using a Mobile Phone Whilst Driving None Augustus Road Augustus Road Birmingham Birmingham Fixed Penalty N/A   52.4695793 -1.9378608
21955 op-snap---monthly-publication-november-2025.pdf   1497 2025-11 Pedal Bike Mercedes-Benz C220 Black Using a Mobile Phone Whilst Driving None Aston Webb Boulevard Aston Webb Boulevard Birmingham Birmingham Fixed Penalty N/A   52.4468506 -1.9395619

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