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 disposal = "Education", month = "2025-12" 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, offence_location_raw, offence_location, council_area_raw, latitude, longitude

offence 4

  • Driving without Due Care and Attention 7
  • Stop a vehicle within pelican pedestrian crossing limits 4
  • Contravening a Red Traffic Light 3
  • Stop a vehicle on pedestrian crossing 1

council_area 4

  • Birmingham 11
  • Dudley 2
  • Coventry 1
  • Solihull 1

reporter_transport_mode 2

  • Car 14
  • Pedal Bike 1

vehicle_make 1

  • Mercedes-Benz · 15 ✖

month 1

  • 2025-12 · 15 ✖

disposal 1

  • Education · 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
3992 op-snap---monthly-publication-december-2025.pdf   120 2025-12 Car Mercedes-Benz Vito White Contravening a Red Traffic Light None Factory Road Factory Road Dudley Dudley Education N/A   52.5324055 -2.0739923
4096 op-snap---monthly-publication-december-2025.pdf   224 2025-12 Car Mercedes-Benz GLE Blue Driving without Due Care and Attention None Marsh Hill Marsh Hill Birmingham Birmingham Education N/A   52.5246617 -1.8687505
4097 op-snap---monthly-publication-december-2025.pdf   225 2025-12 Car Mercedes-Benz Sprinter White Driving without Due Care and Attention None Station Road, Stechford Station Road, Stechford Birmingham Birmingham Education N/A   52.480771 -1.8086714
4368 op-snap---monthly-publication-december-2025.pdf   496 2025-12 Car Mercedes-Benz glc 250 White Stop a vehicle within pelican pedestrian crossing limits None Washwood Heath Road Washwood Heath Road Birmingham Birmingham Education N/A   52.4929304 -1.8229092
4400 op-snap---monthly-publication-december-2025.pdf   528 2025-12 Car Mercedes-Benz a-class White Driving without Due Care and Attention None Walsall Road Walsall Road Birmingham Birmingham Education N/A   52.5919543 -1.8517118
4401 op-snap---monthly-publication-december-2025.pdf   529 2025-12 Car Mercedes-Benz C Class Silver Driving without Due Care and Attention None Walsall Road Walsall Road Birmingham Birmingham Education N/A   52.5919543 -1.8517118
4477 op-snap---monthly-publication-december-2025.pdf   605 2025-12 Pedal Bike Mercedes-Benz Camper White Driving without Due Care and Attention None Stoney Stanton Road Stoney Stanton Road Coventry Coventry Education N/A   52.4221152 -1.4959475
4828 op-snap---monthly-publication-december-2025.pdf   956 2025-12 Car Mercedes-Benz Sprinter White Contravening a Red Traffic Light None A491 High Street, Amblecote High Street, Amblecote Dudley Dudley Education N/A   52.461983 -2.1492141
4871 op-snap---monthly-publication-december-2025.pdf   999 2025-12 Car Mercedes-Benz A180 White Driving without Due Care and Attention None Lucas Circus Hockley Lucas Circus Hockley Birmingham Birmingham Education N/A      
4910 op-snap---monthly-publication-december-2025.pdf   1038 2025-12 Car Mercedes-Benz C class Grey Driving without Due Care and Attention None Bordesley Green East Bordesley Green East Birmingham Birmingham Education N/A   52.4802441 -1.8327073
5009 op-snap---monthly-publication-december-2025.pdf   1137 2025-12 Car Mercedes-Benz A180 Black Contravening a Red Traffic Light None Marshall Lake Road Marshall Lake Road Solihull Solihull Education N/A   52.3975426 -1.818252
5115 op-snap---monthly-publication-december-2025.pdf   1243 2025-12 Car Mercedes-Benz CLA200 Black Stop a vehicle on pedestrian crossing None High Street Newtown High Street Newtown Birmingham Birmingham Education N/A   52.5000098 -1.8959802
5178 op-snap---monthly-publication-december-2025.pdf   1306 2025-12 Car Mercedes-Benz Benz A 200 Grey Stop a vehicle within pelican pedestrian crossing limits None Washwood Heath Rd Washwood Heath Road Birmingham Birmingham Education N/A   52.4929304 -1.8229092
5179 op-snap---monthly-publication-december-2025.pdf   1307 2025-12 Car Mercedes-Benz Benz Silver Stop a vehicle within pelican pedestrian crossing limits None Washwood Heath Rd Washwood Heath Road Birmingham Birmingham Education N/A   52.4929304 -1.8229092
5180 op-snap---monthly-publication-december-2025.pdf   1308 2025-12 Car Mercedes-Benz C200 Silver Stop a vehicle within pelican pedestrian crossing limits None Washwood Heath Rd Washwood Heath Road Birmingham Birmingham Education N/A   52.4929304 -1.8229092

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