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

17 rows where disposal = "Court", month = "2025-06" and vehicle_make = "Volkswagen" 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

offence 4

  • Driving without Due Care and Attention 14
  • Contravening a Red Traffic Light 1
  • Dangerous Driving 1
  • Using a Mobile Phone Whilst Driving 1

council_area 4

  • Birmingham 11
  • Sandwell 3
  • Dudley 2
  • Walsall 1

reporter_transport_mode 2

  • Car 16
  • Pedal Bike 1

vehicle_make 1

  • Volkswagen · 17 ✖

month 1

  • 2025-06 · 17 ✖

disposal 1

  • Court · 17 ✖
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
14207 op-snap---monthly-publication-june-2025.pdf   136 2025-06 Car Volkswagen GOLF Black Contravening a Red Traffic Light None KING STREET King Street Dudley Dudley Court N/A   52.5095654 -2.0806912
14349 op-snap---monthly-publication-june-2025.pdf   278 2025-06 Car Volkswagen Scirocco White Driving without Due Care and Attention No Insurance Burton Road, towards Sedgley Burton Road, towards Sedgley Dudley Dudley Court N/A      
14423 op-snap---monthly-publication-june-2025.pdf   352 2025-06 Car Volkswagen Golf White Driving without Due Care and Attention None Stratford Road Stratford Road Birmingham Birmingham Court N/A   52.4203897 -1.8338574
14474 op-snap---monthly-publication-june-2025.pdf   403 2025-06 Car Volkswagen Golf Silver Driving without Due Care and Attention None A452 Castle Bromwich Interchange Castle Bromwich Interchange Birmingham Birmingham Court N/A      
14534 op-snap---monthly-publication-june-2025.pdf   463 2025-06 Car Volkswagen Golf Grey Driving without Due Care and Attention None Broadway North Broadway North Walsall Walsall Court N/A   52.5886007 -1.9741222
14707 op-snap---monthly-publication-june-2025.pdf   636 2025-06 Pedal Bike Volkswagen Golf Silver Driving without Due Care and Attention No Insurance Park Lane West Park Lane West Sandwell Sandwell Court N/A   52.5227061 -2.0617482
14788 op-snap---monthly-publication-june-2025.pdf   717 2025-06 Car Volkswagen Golf Silver Driving without Due Care and Attention No Insurance City Road City Road Birmingham Birmingham Court N/A   52.4763176 -1.9584897
14860 op-snap---monthly-publication-june-2025.pdf   789 2025-06 Car Volkswagen Golf Blue Dangerous Driving None Hagley Road Hagley Road Birmingham Birmingham Court N/A   52.471632 -1.9456776
14906 op-snap---monthly-publication-june-2025.pdf   835 2025-06 Car Volkswagen Passat Grey Using a Mobile Phone Whilst Driving None M42 M42 Birmingham Birmingham Court N/A      
15105 op-snap---monthly-publication-june-2025.pdf   1034 2025-06 Car Volkswagen Golf Blue Driving without Due Care and Attention None Hawthorn Road Hawthorn Road Birmingham Birmingham Court N/A   52.5436609 -1.8214668
15215 op-snap---monthly-publication-june-2025.pdf   1144 2025-06 Car Volkswagen CADDY White Driving without Due Care and Attention No Insurance Haslucks Green Road Haslucks Green Road Birmingham Birmingham Court N/A      
15240 op-snap---monthly-publication-june-2025.pdf   1169 2025-06 Car Volkswagen   Grey Driving without Due Care and Attention None WOOD GREEN ROAD Wood Green Road Sandwell Sandwell Court N/A   52.5628617 -2.0055157
15476 op-snap---monthly-publication-june-2025.pdf   1405 2025-06 Car Volkswagen Golf Red Driving without Due Care and Attention None Brackenbury Road Brackenbury Road Birmingham Birmingham Court N/A   52.5407924 -1.8709807
15495 op-snap---monthly-publication-june-2025.pdf   1424 2025-06 Car Volkswagen Golf Grey Driving without Due Care and Attention None Dudley Road, Halesowen Dudley Road, Halesowen Sandwell Sandwell Court N/A      
15520 op-snap---monthly-publication-june-2025.pdf   1449 2025-06 Car Volkswagen Golf Silver Driving without Due Care and Attention None Hollybank Road Hollybank Road Birmingham Birmingham Court N/A   52.4236341 -1.8787502
15554 op-snap---monthly-publication-june-2025.pdf   1483 2025-06 Car Volkswagen Touran Blue Driving without Due Care and Attention None Reddings Lane Reddings Lane Birmingham Birmingham Court N/A   52.4506039 -1.8463952
15589 op-snap---monthly-publication-june-2025.pdf   1518 2025-06 Car Volkswagen golf Grey Driving without Due Care and Attention None Birmingham Road Birmingham Road Birmingham Birmingham Court N/A   52.5505398 -1.8252993

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