Bad Cams - No road overlap

The following cameras were detected to not intersect with a road. Likely due to incorrect distance from the road or tagged with an incorrect direction. There are also cameras along trails that are misclassified as ALPRs. These cameras might be better served by a “facial tracking” value in surveillance:type, but there doesn’t seem to be a general concensus around what value to use. Some ALPRs along straight stretches of road, which have a large distance between nodes show up incorrectly.

Code
import pandas as pd
import geopandas as gpd
import folium
import itables
from datetime import datetime
noxgdf = gpd.read_file("../../../osmbadcams/nointersect.gpkg")
noxgdf = noxgdf.rename({"STUSPS":"State", "NAME":"State Full", "osmid":"ID", "url":"URL"}, axis=1)

noxgdf.explore(popup=True, style_kwds={"weight":9,"color":"#9E2F02","opacity":0.8,"fillOpacity":0.5})
Make this Notebook Trusted to load map: File -> Trust Notebook
Code
itables.show(pd.DataFrame(noxgdf.drop(["geometry"], axis=1)),  maxBytes=200000, allow_html=True)
Loading ITables v2.7.3 from the internet... (need help?)

Started with 4,387 datapoints on 2026-05-31, which represented over 4% of all the ALPR data at the time.
Last updated: 2026-06-08