Automated Speed Enforcement Citations
City of San Francisco
@usgov.city_of_san_francisco_automated_speed_enforcement_citations
City of San Francisco
@usgov.city_of_san_francisco_automated_speed_enforcement_citations
A. SUMMARY This dataset contains daily counts of warnings and citations issued by the SFMTA’s Automated Speed Enforcement program, broken down by camera. Some enforcement locations have two cameras to monitor traffic in both directions. To show which direction a camera is facing, a directional abbreviation is used—like NB for northbound, meaning traffic heading north. The dataset also includes the average speed of vehicles that received warnings or citations, as well as citation counts categorized by how much the vehicle exceeded the speed limit:
CREATE TABLE table_1 (
"date" VARCHAR,
"site_id" VARCHAR,
"location" VARCHAR,
"enforcement_type" VARCHAR,
"dow" VARCHAR,
"issued_warnings" BIGINT,
"issued_citations" BIGINT,
"posted_speed" BIGINT,
"avg_issued_speed" DOUBLE,
"n__11_to_15_mph_over" BIGINT -- 11 To 15 Mph Over,
"n__16_to_20_mph_over" BIGINT -- 16 To 20 Mph Over,
"n__21_plus_mph_over" BIGINT -- 21 Plus Mph Over,
"point" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"analysis_neighborhood" VARCHAR,
"supervisor_district" BIGINT,
"data_as_of" VARCHAR,
"data_loaded_at" VARCHAR
);Anyone who has the link will be able to view this.