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

14 rows where council_area = "Birmingham" and offence = "Drive / Ride / Lead an animal on a footpath" sorted by month descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: source_file, vehicle_model, vehicle_colour, offence_location_raw, offence_location, nfa_rationale, latitude, longitude

vehicle_make 7

  • BMW 4
  • Mercedes-Benz 4
  • Audi 1
  • Renault 1
  • Toyota 1
  • Vauxhall 1
  • Volkswagen 1

month 7

  • 2025-07 3
  • 2026-02 3
  • 2025-06 2
  • 2025-08 2
  • 2026-01 2
  • 2025-02 1
  • 2025-10 1

reporter_transport_mode 3

  • Other 7
  • Car 5
  • Pedestrian 2

disposal 3

  • NFA 8
  • Fixed Penalty 3
  • Warning Letter 3

offence 1

  • Drive / Ride / Lead an animal on a footpath · 14 ✖

council_area 1

  • Birmingham · 14 ✖
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
7444 op-snap---monthly-publication-february-2026.pdf   191 2026-02 Other Mercedes-Benz E 220 Grey Drive / Ride / Lead an animal on a footpath None Kingstanding Road Kingstanding Road Birmingham Birmingham Fixed Penalty N/A   52.5521118 -1.8845138
7613 op-snap---monthly-publication-february-2026.pdf   360 2026-02 Other Mercedes-Benz E 220 Grey Drive / Ride / Lead an animal on a footpath None Kingstanding Road Kingstanding Road Birmingham Birmingham Fixed Penalty N/A   52.5521118 -1.8845138
7667 op-snap---monthly-publication-february-2026.pdf   414 2026-02 Other Vauxhall Zafira Blue Drive / Ride / Lead an animal on a footpath None Kingstanding Road Kingstanding Road Birmingham Birmingham Warning Letter N/A   52.5521118 -1.8845138
11830 op-snap---monthly-publication-january-2026.pdf   1291 2026-01 Other Mercedes-Benz C Class Grey Drive / Ride / Lead an animal on a footpath None Kingstanding Road Kingstanding Road Birmingham Birmingham NFA No VRM   52.5521118 -1.8845138
11850 op-snap---monthly-publication-january-2026.pdf   1311 2026-01 Other Mercedes-Benz C Class Grey Drive / Ride / Lead an animal on a footpath None Kingstanding Road Kingstanding Road Birmingham Birmingham NFA No VRM   52.5521118 -1.8845138
22347 op-snap---monthly-publication-october-2025.pdf   297 2025-10 Car Audi S3 Blue Drive / Ride / Lead an animal on a footpath None Highfield Road Highfield Road Birmingham Birmingham Fixed Penalty N/A   52.4216321 -1.855984
2066 op-snap---monthly-publication-august-2025.pdf   41 2025-08 Car Renault HGV Orange Drive / Ride / Lead an animal on a footpath None Green Lane Green Lane Birmingham Birmingham NFA Outside of 14 DAYS Late Submission   52.4618966 -1.9955421
2662 op-snap---monthly-publication-august-2025.pdf   637 2025-08 Car Toyota Yaris Grey Drive / Ride / Lead an animal on a footpath None Shaftmoor Lane Shaftmoor Lane Birmingham Birmingham NFA Misc Inc Crimes   52.4418944 -1.8407335
12441 op-snap---monthly-publication-july-2025.pdf   493 2025-07 Pedestrian BMW X2 Black Drive / Ride / Lead an animal on a footpath None Valbourne Road Valbourne Road Birmingham Birmingham NFA Outside of 14 Days NIP   52.4165707 -1.9062691
12442 op-snap---monthly-publication-july-2025.pdf   494 2025-07 Pedestrian BMW X2 Black Drive / Ride / Lead an animal on a footpath None Valbourne Road Valbourne Road Birmingham Birmingham Warning Letter N/A   52.4165707 -1.9062691
12685 op-snap---monthly-publication-july-2025.pdf   737 2025-07 Car BMW 520 Black Drive / Ride / Lead an animal on a footpath None Perry Hill Lane Perry Hill Lane Birmingham Birmingham NFA No Independent Evidence Available   52.4634477 -2.0026128
14846 op-snap---monthly-publication-june-2025.pdf   775 2025-06 Other BMW X2 Black Drive / Ride / Lead an animal on a footpath None Valbourne Road Valbourne Road Birmingham Birmingham Warning Letter N/A   52.4165707 -1.9062691
14891 op-snap---monthly-publication-june-2025.pdf   820 2025-06 Other Volkswagen Golf Black Drive / Ride / Lead an animal on a footpath None Coventry Road Coventry Road Birmingham Birmingham NFA No Independent Evidence Available   52.4726661 -1.8769032
5242 op-snap---monthly-publication-february-2025.pdf   59 2025-02 Car   ? Black Drive / Ride / Lead an animal on a footpath None Pershore Road Pershore Road Birmingham Birmingham NFA No VRM Yes - Via Email 52.4308271 -1.920078

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