1.6 Million UK Traffic Accidents
Visualise and analyse traffic demographics
@kaggle.daveianhickey_2000_16_traffic_flow_england_scotland_wales
Visualise and analyse traffic demographics
@kaggle.daveianhickey_2000_16_traffic_flow_england_scotland_wales
CREATE TABLE accidents_2005_to_2007 (
"accident_index" VARCHAR,
"location_easting_osgr" DOUBLE,
"location_northing_osgr" DOUBLE,
"longitude" DOUBLE,
"latitude" DOUBLE,
"police_force" BIGINT,
"accident_severity" BIGINT,
"number_of_vehicles" BIGINT,
"number_of_casualties" BIGINT,
"date" TIMESTAMP,
"day_of_week" BIGINT,
"time" VARCHAR,
"local_authority_district" BIGINT,
"local_authority_highway" VARCHAR,
"n_1st_road_class" BIGINT,
"n_1st_road_number" BIGINT,
"road_type" VARCHAR,
"speed_limit" BIGINT,
"junction_detail" VARCHAR,
"junction_control" VARCHAR,
"n_2nd_road_class" BIGINT,
"n_2nd_road_number" BIGINT,
"pedestrian_crossing_human_control" VARCHAR,
"pedestrian_crossing_physical_facilities" VARCHAR,
"light_conditions" VARCHAR,
"weather_conditions" VARCHAR,
"road_surface_conditions" VARCHAR,
"special_conditions_at_site" VARCHAR,
"carriageway_hazards" VARCHAR,
"urban_or_rural_area" BIGINT,
"did_police_officer_attend_scene_of_accident" VARCHAR,
"lsoa_of_accident_location" VARCHAR,
"year" BIGINT
);
CREATE TABLE accidents_2009_to_2011 (
"accident_index" VARCHAR,
"location_easting_osgr" BIGINT,
"location_northing_osgr" BIGINT,
"longitude" DOUBLE,
"latitude" DOUBLE,
"police_force" BIGINT,
"accident_severity" BIGINT,
"number_of_vehicles" BIGINT,
"number_of_casualties" BIGINT,
"date" TIMESTAMP,
"day_of_week" BIGINT,
"time" VARCHAR,
"local_authority_district" BIGINT,
"local_authority_highway" VARCHAR,
"n_1st_road_class" BIGINT,
"n_1st_road_number" BIGINT,
"road_type" VARCHAR,
"speed_limit" BIGINT,
"junction_detail" VARCHAR,
"junction_control" VARCHAR,
"n_2nd_road_class" BIGINT,
"n_2nd_road_number" BIGINT,
"pedestrian_crossing_human_control" VARCHAR,
"pedestrian_crossing_physical_facilities" VARCHAR,
"light_conditions" VARCHAR,
"weather_conditions" VARCHAR,
"road_surface_conditions" VARCHAR,
"special_conditions_at_site" VARCHAR,
"carriageway_hazards" VARCHAR,
"urban_or_rural_area" BIGINT,
"did_police_officer_attend_scene_of_accident" VARCHAR,
"lsoa_of_accident_location" VARCHAR,
"year" BIGINT
);
CREATE TABLE accidents_2012_to_2014 (
"accident_index" VARCHAR,
"location_easting_osgr" BIGINT,
"location_northing_osgr" BIGINT,
"longitude" DOUBLE,
"latitude" DOUBLE,
"police_force" BIGINT,
"accident_severity" BIGINT,
"number_of_vehicles" BIGINT,
"number_of_casualties" BIGINT,
"date" TIMESTAMP,
"day_of_week" BIGINT,
"time" VARCHAR,
"local_authority_district" BIGINT,
"local_authority_highway" VARCHAR,
"n_1st_road_class" BIGINT,
"n_1st_road_number" BIGINT,
"road_type" VARCHAR,
"speed_limit" BIGINT,
"junction_detail" VARCHAR,
"junction_control" VARCHAR,
"n_2nd_road_class" BIGINT,
"n_2nd_road_number" BIGINT,
"pedestrian_crossing_human_control" VARCHAR,
"pedestrian_crossing_physical_facilities" VARCHAR,
"light_conditions" VARCHAR,
"weather_conditions" VARCHAR,
"road_surface_conditions" VARCHAR,
"special_conditions_at_site" VARCHAR,
"carriageway_hazards" VARCHAR,
"urban_or_rural_area" BIGINT,
"did_police_officer_attend_scene_of_accident" VARCHAR,
"lsoa_of_accident_location" VARCHAR,
"year" BIGINT
);
CREATE TABLE uktrafficaadf (
"aadfyear" BIGINT,
"cp" BIGINT,
"estimation_method" VARCHAR,
"estimation_method_detailed" VARCHAR,
"region" VARCHAR,
"localauthority" VARCHAR,
"road" VARCHAR,
"roadcategory" VARCHAR,
"easting" BIGINT,
"northing" BIGINT,
"startjunction" VARCHAR,
"endjunction" VARCHAR,
"linklength_km" DOUBLE,
"linklength_miles" DOUBLE,
"pedalcycles" BIGINT,
"motorcycles" BIGINT,
"carstaxis" BIGINT,
"busescoaches" BIGINT,
"lightgoodsvehicles" BIGINT,
"v2axlerigidhgv" BIGINT,
"v3axlerigidhgv" BIGINT,
"v4or5axlerigidhgv" BIGINT,
"v3or4axleartichgv" BIGINT,
"v5axleartichgv" BIGINT,
"v6ormoreaxleartichgv" BIGINT,
"allhgvs" BIGINT,
"allmotorvehicles" BIGINT,
"lat" DOUBLE,
"lon" DOUBLE
);
Anyone who has the link will be able to view this.