From 583b2a65755fb6a4a6555f1799b1481e5991af96 Mon Sep 17 00:00:00 2001 From: robinlovelace Date: Sun, 12 Jan 2025 18:00:38 +0000 Subject: [PATCH] Update stats19_schema --- data-raw/schema_new.Rmd | 155 +-- data-raw/stats19_schema.csv | 1996 +++++++++++++++++++---------------- data/stats19_schema.rda | Bin 8688 -> 10158 bytes 3 files changed, 1165 insertions(+), 986 deletions(-) diff --git a/data-raw/schema_new.Rmd b/data-raw/schema_new.Rmd index eb9cd13..2a9ad64 100644 --- a/data-raw/schema_new.Rmd +++ b/data-raw/schema_new.Rmd @@ -12,20 +12,22 @@ devtools::load_all() # Load stats19 schema and save variable names ```{r} -schema_url = "https://data.dft.gov.uk/road-accidents-safety-data/dft-road-casualty-statistics-road-safety-open-dataset-data-guide-2024.xlsx" -schema_f = basename(schema_url) -schema_saved = file.path(get_data_directory(), schema_f) +schema_url <- "https://data.dft.gov.uk/road-accidents-safety-data/dft-road-casualty-statistics-road-safety-open-dataset-data-guide-2024.xlsx" +schema_f <- basename(schema_url) +schema_saved <- file.path(get_data_directory(), schema_f) download.file(schema_url, destfile = schema_saved) -schema_dft = readxl::read_excel(schema_saved) +schema_dft <- readxl::read_excel(schema_saved) schema_dft + +# Pre-prepared dataset: stats19_variables -readr::write_csv(stats19_variables, "data-raw/stats19_variables.csv") -stats19_variables_dft = schema_dft %>% - rename(variable = `field name`) %>% - group_by(table, variable) %>% +# readr::write_csv(stats19_variables, "data-raw/stats19_variables.csv") +stats19_variables_dft <- schema_dft %>% + rename(variable = `field name`) %>% + group_by(table, variable) %>% summarise( note = first(note) - ) + ) stats19_variables_dft summary(stats19_variables$table %in% stats19_variables_dft$table) summary(in_original <- stats19_variables$column_name %in% stats19_variables_dft$variable) @@ -33,117 +35,126 @@ stats19_variables$column_name[!in_original] # [1] "vehicle_text" summary(in_new <- stats19_variables_dft$variable %in% stats19_variables$column_name) stats19_variables_dft$variable[!in_new] -# [1] "collision_index" -# [2] "collision_reference" -# [3] "collision_year" +# [1] "collision_index" +# [2] "collision_reference" +# [3] "collision_year" # [4] "did_police_officer_attend_scene_of_collision" -# [5] "enhanced_collision_severity" -# [6] "legacy_collision_severity" -# [7] "lsoa_of_collision_location" -# [8] "casualty_distance_banding" -# [9] "collision_index" -# [10] "collision_reference" -# [11] "collision_year" -# [12] "enhanced_casualty_severity" -# [13] "lsoa_of_casualty" -# [14] "adjusted_serious" -# [15] "adjusted_slight" -# [16] "injury_based" -# [17] "adjusted_serious" -# [18] "adjusted_slight" -# [19] "injury_based" -# [20] "accident_ref_no" -# [21] "effective_date_of_change" -# [22] "previously_published_value" -# [23] "replacement_value" -# [24] "variable" -# [25] "collision_index" -# [26] "collision_reference" -# [27] "collision_year" -# [28] "dir_from_e" -# [29] "dir_from_n" -# [30] "dir_to_e" -# [31] "dir_to_n" -# [32] "driver_distance_banding" -# [33] "escooter_flag" -# [34] "lsoa_of_driver" -stats19_variables_dft$column_name = snakecase::to_snake_case(stats19_variables_dft$variable) -stats19_variables_minimal = stats19_variables %>% +# [5] "enhanced_collision_severity" +# [6] "legacy_collision_severity" +# [7] "lsoa_of_collision_location" +# [8] "casualty_distance_banding" +# [9] "collision_index" +# [10] "collision_reference" +# [11] "collision_year" +# [12] "enhanced_casualty_severity" +# [13] "lsoa_of_casualty" +# [14] "adjusted_serious" +# [15] "adjusted_slight" +# [16] "injury_based" +# [17] "adjusted_serious" +# [18] "adjusted_slight" +# [19] "injury_based" +# [20] "accident_ref_no" +# [21] "effective_date_of_change" +# [22] "previously_published_value" +# [23] "replacement_value" +# [24] "variable" +# [25] "collision_index" +# [26] "collision_reference" +# [27] "collision_year" +# [28] "dir_from_e" +# [29] "dir_from_n" +# [30] "dir_to_e" +# [31] "dir_to_n" +# [32] "driver_distance_banding" +# [33] "escooter_flag" +# [34] "lsoa_of_driver" +stats19_variables_dft$column_name <- snakecase::to_snake_case(stats19_variables_dft$variable) +stats19_variables_minimal <- stats19_variables %>% select(column_name, type) -stats19_variables_joined = left_join(stats19_variables_dft, stats19_variables_minimal) +stats19_variables_joined <- left_join(stats19_variables_dft, stats19_variables_minimal) table(stats19_variables_joined$type) # table of extent 0 > -stats19_variables_joined %>% +stats19_variables_joined %>% filter(is.na(type)) -stats19_variables_joined$type = "character" +stats19_variables_joined$type <- "character" stats19_variables_joined$type[ - grepl(pattern = "year", x = stats19_variables_joined$column_name) -] = "numeric" + grepl(pattern = "year", x = stats19_variables_joined$column_name) +] <- "numeric" # Check variables: stats19_variables_joined$variable stats19_variables_joined |> filter(str_detect(variable, "age_of")) stats19_variables_joined$type[ - grepl(pattern = "age_of", x = stats19_variables_joined$column_name) -] = "numeric" -reg = "adjusted|engine|east|north|longitude|latitude" + grepl(pattern = "age_of", x = stats19_variables_joined$column_name) +] <- "numeric" +reg <- "adjusted|engine|east|north|longitude|latitude" stats19_variables_joined |> filter(str_detect(variable, reg)) stats19_variables_joined$type[ - grepl(pattern = reg, x = stats19_variables_joined$column_name) -] = "numeric" + grepl(pattern = reg, x = stats19_variables_joined$column_name) +] <- "numeric" +``` + +```{r} +# Save the updated variables +stats_19_variables_old = read_csv("data-raw/stats19_variables.csv") +stats19_variables = stats19_variables_joined +waldo::compare(names(stats_19_variables_old), names(stats19_variables)) # Same names +waldo::compare(stats_19_variables_old, stats19_variables) # Different values +readr::write_csv(stats19_variables, "data-raw/stats19_variables.csv") ``` # Save the schema ```{r} +# Previous version of the dataset stats19_schema readr::write_csv(stats19_schema, "data-raw/stats19_schema.csv") table(schema_dft$`code/format`) -stats19_schema_joined = left_join(stats19_schema_dft, stats19_variables_joined) -stats19_schema_joined = stats19_schema_joined %>% - rename(variable_formatted = column_name) %>% +stats19_schema_joined <- left_join(stats19_schema_dft, stats19_variables_joined) +stats19_schema_joined <- stats19_schema_joined %>% + rename(variable_formatted = column_name) %>% filter(!is.na(as.numeric(code))) ``` # Tests ```{r} -s = stats19_schema +s <- stats19_schema s -s %>% +s %>% filter(variable == "vehicle_type") -s_na = s %>% - filter(is.na(variable_formatted)) %>% +s_na <- s %>% + filter(is.na(variable_formatted)) %>% select(variable_formatted, variable) -View(s_na) +nrow(s_na) # no NAs stats19_schema$variable_formatted[ is.na(stats19_schema$variable_formatted) -] = stats19_schema$variable[ +] <- stats19_schema$variable[ is.na(stats19_schema$variable_formatted) -] +] ``` ```{r} -stats19_schema = stats19_schema %>% +stats19_schema <- stats19_schema %>% filter(variable != "speed_limit") ``` - - # Update the schemas ```{r} -stats19_variables_old = stats19_variables +stats19_variables_old <- stats19_variables # stats19_variables = stats19_variables_joined # After manual edits: -stats19_variables = read_csv("data-raw/stats19_variables.csv") +stats19_variables <- read_csv("data-raw/stats19_variables.csv") readr::write_csv(stats19_variables, "data-raw/stats19_variables.csv") -stats19_schema_old = stats19_schema -stats19_schema = stats19_schema_joined +stats19_schema_old <- stats19::stats19_schema +stats19_schema <- stats19_schema_joined +waldo::compare(names(stats19_schema_old), names(stats19_schema)) # Same names +waldo::compare(stats19_schema_old, stats19_schema) # Different values readr::write_csv(stats19_schema, "data-raw/stats19_schema.csv") - usethis::use_data(stats19_variables, overwrite = TRUE) usethis::use_data(stats19_schema, overwrite = TRUE) ``` diff --git a/data-raw/stats19_schema.csv b/data-raw/stats19_schema.csv index 26d4070..76d1adf 100644 --- a/data-raw/stats19_schema.csv +++ b/data-raw/stats19_schema.csv @@ -1,915 +1,1083 @@ table,variable,code,label,note,variable_formatted,type -Accident,police_force,1,Metropolitan Police,NA,police_force,character -Accident,police_force,3,Cumbria,NA,police_force,character -Accident,police_force,4,Lancashire,NA,police_force,character -Accident,police_force,5,Merseyside,NA,police_force,character -Accident,police_force,6,Greater Manchester,NA,police_force,character -Accident,police_force,7,Cheshire,NA,police_force,character -Accident,police_force,10,Northumbria,NA,police_force,character -Accident,police_force,11,Durham,NA,police_force,character -Accident,police_force,12,North Yorkshire,NA,police_force,character -Accident,police_force,13,West Yorkshire,NA,police_force,character -Accident,police_force,14,South Yorkshire,NA,police_force,character -Accident,police_force,16,Humberside,NA,police_force,character -Accident,police_force,17,Cleveland,NA,police_force,character -Accident,police_force,20,West Midlands,NA,police_force,character -Accident,police_force,21,Staffordshire,NA,police_force,character -Accident,police_force,22,West Mercia,NA,police_force,character -Accident,police_force,23,Warwickshire,NA,police_force,character -Accident,police_force,30,Derbyshire,NA,police_force,character -Accident,police_force,31,Nottinghamshire,NA,police_force,character -Accident,police_force,32,Lincolnshire,NA,police_force,character -Accident,police_force,33,Leicestershire,NA,police_force,character -Accident,police_force,34,Northamptonshire,NA,police_force,character -Accident,police_force,35,Cambridgeshire,NA,police_force,character -Accident,police_force,36,Norfolk,NA,police_force,character -Accident,police_force,37,Suffolk,NA,police_force,character -Accident,police_force,40,Bedfordshire,NA,police_force,character -Accident,police_force,41,Hertfordshire,NA,police_force,character -Accident,police_force,42,Essex,NA,police_force,character -Accident,police_force,43,Thames Valley,NA,police_force,character -Accident,police_force,44,Hampshire,NA,police_force,character -Accident,police_force,45,Surrey,NA,police_force,character -Accident,police_force,46,Kent,NA,police_force,character -Accident,police_force,47,Sussex,NA,police_force,character -Accident,police_force,48,City of London,NA,police_force,character -Accident,police_force,50,Devon and Cornwall,NA,police_force,character -Accident,police_force,52,Avon and Somerset,NA,police_force,character -Accident,police_force,53,Gloucestershire,NA,police_force,character -Accident,police_force,54,Wiltshire,NA,police_force,character -Accident,police_force,55,Dorset,NA,police_force,character -Accident,police_force,60,North Wales,NA,police_force,character -Accident,police_force,61,Gwent,NA,police_force,character -Accident,police_force,62,South Wales,NA,police_force,character -Accident,police_force,63,Dyfed-Powys,NA,police_force,character -Accident,police_force,91,Northern,category discontinued in 2019,police_force,NA -Accident,police_force,92,Grampian,category discontinued in 2019,police_force,NA -Accident,police_force,93,Tayside,category discontinued in 2019,police_force,NA -Accident,police_force,94,Fife,category discontinued in 2019,police_force,NA -Accident,police_force,95,Lothian and Borders,category discontinued in 2019,police_force,NA -Accident,police_force,96,Central,category discontinued in 2019,police_force,NA -Accident,police_force,97,Strathclyde,category discontinued in 2019,police_force,NA -Accident,police_force,98,Dumfries and Galloway,category discontinued in 2019,police_force,NA -Accident,police_force,99,Police Scotland,category introduced in 2019,police_force,NA -Accident,accident_severity,1,Fatal,NA,accident_severity,character -Accident,accident_severity,2,Serious,NA,accident_severity,character -Accident,accident_severity,3,Slight,NA,accident_severity,character -Accident,day_of_week,1,Sunday,NA,day_of_week,character -Accident,day_of_week,2,Monday,NA,day_of_week,character -Accident,day_of_week,3,Tuesday,NA,day_of_week,character -Accident,day_of_week,4,Wednesday,NA,day_of_week,character -Accident,day_of_week,5,Thursday,NA,day_of_week,character -Accident,day_of_week,6,Friday,NA,day_of_week,character -Accident,day_of_week,7,Saturday,NA,day_of_week,character -Accident,local_authority_district,1,Westminster,NA,local_authority_district,character -Accident,local_authority_district,2,Camden,NA,local_authority_district,character -Accident,local_authority_district,3,Islington,NA,local_authority_district,character -Accident,local_authority_district,4,Hackney,NA,local_authority_district,character -Accident,local_authority_district,5,Tower Hamlets,NA,local_authority_district,character -Accident,local_authority_district,6,Greenwich,NA,local_authority_district,character -Accident,local_authority_district,7,Lewisham,NA,local_authority_district,character -Accident,local_authority_district,8,Southwark,NA,local_authority_district,character -Accident,local_authority_district,9,Lambeth,NA,local_authority_district,character -Accident,local_authority_district,10,Wandsworth,NA,local_authority_district,character -Accident,local_authority_district,11,Hammersmith and Fulham,NA,local_authority_district,character -Accident,local_authority_district,12,Kensington and Chelsea,NA,local_authority_district,character -Accident,local_authority_district,13,Waltham Forest,NA,local_authority_district,character -Accident,local_authority_district,14,Redbridge,NA,local_authority_district,character -Accident,local_authority_district,15,Havering,NA,local_authority_district,character -Accident,local_authority_district,16,Barking and Dagenham,NA,local_authority_district,character -Accident,local_authority_district,17,Newham,NA,local_authority_district,character -Accident,local_authority_district,18,Bexley,NA,local_authority_district,character -Accident,local_authority_district,19,Bromley,NA,local_authority_district,character -Accident,local_authority_district,20,Croydon,NA,local_authority_district,character -Accident,local_authority_district,21,Sutton,NA,local_authority_district,character -Accident,local_authority_district,22,Merton,NA,local_authority_district,character -Accident,local_authority_district,23,Kingston upon Thames,NA,local_authority_district,character -Accident,local_authority_district,24,Richmond upon Thames,NA,local_authority_district,character -Accident,local_authority_district,25,Hounslow,NA,local_authority_district,character -Accident,local_authority_district,26,Hillingdon,NA,local_authority_district,character -Accident,local_authority_district,27,Ealing,NA,local_authority_district,character -Accident,local_authority_district,28,Brent,NA,local_authority_district,character -Accident,local_authority_district,29,Harrow,NA,local_authority_district,character -Accident,local_authority_district,30,Barnet,NA,local_authority_district,character -Accident,local_authority_district,31,Haringey,NA,local_authority_district,character -Accident,local_authority_district,32,Enfield,NA,local_authority_district,character -Accident,local_authority_district,33,Hertsmere,NA,local_authority_district,character -Accident,local_authority_district,38,Epsom and Ewell,NA,local_authority_district,character -Accident,local_authority_district,40,Spelthorne,NA,local_authority_district,character -Accident,local_authority_district,57,London Airport (Heathrow),NA,local_authority_district,character -Accident,local_authority_district,60,Allerdale,NA,local_authority_district,character -Accident,local_authority_district,61,Barrow-in-Furness,NA,local_authority_district,character -Accident,local_authority_district,62,Carlisle,NA,local_authority_district,character -Accident,local_authority_district,63,Copeland,NA,local_authority_district,character -Accident,local_authority_district,64,Eden,NA,local_authority_district,character -Accident,local_authority_district,65,South Lakeland,NA,local_authority_district,character -Accident,local_authority_district,70,Blackburn with Darwen,NA,local_authority_district,character -Accident,local_authority_district,71,Blackpool,NA,local_authority_district,character -Accident,local_authority_district,72,Burnley,NA,local_authority_district,character -Accident,local_authority_district,73,Chorley,NA,local_authority_district,character -Accident,local_authority_district,74,Fylde,NA,local_authority_district,character -Accident,local_authority_district,75,Hyndburn,NA,local_authority_district,character -Accident,local_authority_district,76,Lancaster,NA,local_authority_district,character -Accident,local_authority_district,77,Pendle,NA,local_authority_district,character -Accident,local_authority_district,79,Preston,NA,local_authority_district,character -Accident,local_authority_district,80,Ribble Valley,NA,local_authority_district,character -Accident,local_authority_district,82,Rossendale,NA,local_authority_district,character -Accident,local_authority_district,83,South Ribble,NA,local_authority_district,character -Accident,local_authority_district,84,West Lancashire,NA,local_authority_district,character -Accident,local_authority_district,85,Wyre,NA,local_authority_district,character -Accident,local_authority_district,90,Knowsley,NA,local_authority_district,character -Accident,local_authority_district,91,Liverpool,NA,local_authority_district,character -Accident,local_authority_district,92,St. Helens,NA,local_authority_district,character -Accident,local_authority_district,93,Sefton,NA,local_authority_district,character -Accident,local_authority_district,95,Wirral,NA,local_authority_district,character -Accident,local_authority_district,100,Bolton,NA,local_authority_district,character -Accident,local_authority_district,101,Bury,NA,local_authority_district,character -Accident,local_authority_district,102,Manchester,NA,local_authority_district,character -Accident,local_authority_district,104,Oldham,NA,local_authority_district,character -Accident,local_authority_district,106,Rochdale,NA,local_authority_district,character -Accident,local_authority_district,107,Salford,NA,local_authority_district,character -Accident,local_authority_district,109,Stockport,NA,local_authority_district,character -Accident,local_authority_district,110,Tameside,NA,local_authority_district,character -Accident,local_authority_district,112,Trafford,NA,local_authority_district,character -Accident,local_authority_district,114,Wigan,NA,local_authority_district,character -Accident,local_authority_district,120,Chester,NA,local_authority_district,character -Accident,local_authority_district,121,Congleton,NA,local_authority_district,character -Accident,local_authority_district,122,Crewe and Nantwich,NA,local_authority_district,character -Accident,local_authority_district,123,Ellesmere Port and Neston,NA,local_authority_district,character -Accident,local_authority_district,124,Halton,NA,local_authority_district,character -Accident,local_authority_district,126,Macclesfield,NA,local_authority_district,character -Accident,local_authority_district,127,Vale Royal,NA,local_authority_district,character -Accident,local_authority_district,128,Warrington,NA,local_authority_district,character -Accident,local_authority_district,129,Cheshire East,NA,local_authority_district,character -Accident,local_authority_district,130,Cheshire West and Chester,NA,local_authority_district,character -Accident,local_authority_district,139,Northumberland,NA,local_authority_district,character -Accident,local_authority_district,140,Alnwick,NA,local_authority_district,character -Accident,local_authority_district,141,Berwick-upon-Tweed,NA,local_authority_district,character -Accident,local_authority_district,142,Blyth Valley,NA,local_authority_district,character -Accident,local_authority_district,143,Castle Morpeth,NA,local_authority_district,character -Accident,local_authority_district,144,Tynedale,NA,local_authority_district,character -Accident,local_authority_district,145,Wansbeck,NA,local_authority_district,character -Accident,local_authority_district,146,Gateshead,NA,local_authority_district,character -Accident,local_authority_district,147,Newcastle upon Tyne,NA,local_authority_district,character -Accident,local_authority_district,148,North Tyneside,NA,local_authority_district,character -Accident,local_authority_district,149,South Tyneside,NA,local_authority_district,character -Accident,local_authority_district,150,Sunderland,NA,local_authority_district,character -Accident,local_authority_district,160,Chester-le-Street,NA,local_authority_district,character -Accident,local_authority_district,161,Darlington,NA,local_authority_district,character -Accident,local_authority_district,162,Derwentside,NA,local_authority_district,character -Accident,local_authority_district,163,Durham,NA,local_authority_district,character -Accident,local_authority_district,164,Easington,NA,local_authority_district,character -Accident,local_authority_district,165,Sedgefield,NA,local_authority_district,character -Accident,local_authority_district,166,Teesdale,NA,local_authority_district,character -Accident,local_authority_district,168,Wear Valley,NA,local_authority_district,character -Accident,local_authority_district,169,County Durham,NA,local_authority_district,character -Accident,local_authority_district,180,Craven,NA,local_authority_district,character -Accident,local_authority_district,181,Hambleton,NA,local_authority_district,character -Accident,local_authority_district,182,Harrogate,NA,local_authority_district,character -Accident,local_authority_district,184,Richmondshire,NA,local_authority_district,character -Accident,local_authority_district,185,Ryedale,NA,local_authority_district,character -Accident,local_authority_district,186,Scarborough,NA,local_authority_district,character -Accident,local_authority_district,187,Selby,NA,local_authority_district,character -Accident,local_authority_district,189,York,NA,local_authority_district,character -Accident,local_authority_district,200,Bradford,NA,local_authority_district,character -Accident,local_authority_district,202,Calderdale,NA,local_authority_district,character -Accident,local_authority_district,203,Kirklees,NA,local_authority_district,character -Accident,local_authority_district,204,Leeds,NA,local_authority_district,character -Accident,local_authority_district,206,Wakefield,NA,local_authority_district,character -Accident,local_authority_district,210,Barnsley,NA,local_authority_district,character -Accident,local_authority_district,211,Doncaster,NA,local_authority_district,character -Accident,local_authority_district,213,Rotherham,NA,local_authority_district,character -Accident,local_authority_district,215,Sheffield,NA,local_authority_district,character -Accident,local_authority_district,228,"Kingston upon Hull, City of",NA,local_authority_district,character -Accident,local_authority_district,231,East Riding of Yorkshire,NA,local_authority_district,character -Accident,local_authority_district,232,North Lincolnshire,NA,local_authority_district,character -Accident,local_authority_district,233,North East Lincolnshire,NA,local_authority_district,character -Accident,local_authority_district,240,Hartlepool,NA,local_authority_district,character -Accident,local_authority_district,241,Redcar and Cleveland,NA,local_authority_district,character -Accident,local_authority_district,243,Middlesbrough,NA,local_authority_district,character -Accident,local_authority_district,245,Stockton-on-Tees,NA,local_authority_district,character -Accident,local_authority_district,250,Cannock Chase,NA,local_authority_district,character -Accident,local_authority_district,251,East Staffordshire,NA,local_authority_district,character -Accident,local_authority_district,252,Lichfield,NA,local_authority_district,character -Accident,local_authority_district,253,Newcastle-under-Lyme,NA,local_authority_district,character -Accident,local_authority_district,254,South Staffordshire,NA,local_authority_district,character -Accident,local_authority_district,255,Stafford,NA,local_authority_district,character -Accident,local_authority_district,256,Staffordshire Moorlands,NA,local_authority_district,character -Accident,local_authority_district,257,Stoke-on-Trent,NA,local_authority_district,character -Accident,local_authority_district,258,Tamworth,NA,local_authority_district,character -Accident,local_authority_district,270,Bromsgrove,NA,local_authority_district,character -Accident,local_authority_district,273,Malvern Hills,NA,local_authority_district,character -Accident,local_authority_district,274,Redditch,NA,local_authority_district,character -Accident,local_authority_district,276,Worcester,NA,local_authority_district,character -Accident,local_authority_district,277,Wychavon,NA,local_authority_district,character -Accident,local_authority_district,278,Wyre Forest,NA,local_authority_district,character -Accident,local_authority_district,279,Bridgnorth,NA,local_authority_district,character -Accident,local_authority_district,280,North Shropshire,NA,local_authority_district,character -Accident,local_authority_district,281,Oswestry,NA,local_authority_district,character -Accident,local_authority_district,282,Shrewsbury and Atcham,NA,local_authority_district,character -Accident,local_authority_district,283,South Shropshire,NA,local_authority_district,character -Accident,local_authority_district,284,Telford and Wrekin,NA,local_authority_district,character -Accident,local_authority_district,285,"Herefordshire, County of",NA,local_authority_district,character -Accident,local_authority_district,286,Shropshire,NA,local_authority_district,character -Accident,local_authority_district,290,North Warwickshire,NA,local_authority_district,character -Accident,local_authority_district,291,Nuneaton and Bedworth,NA,local_authority_district,character -Accident,local_authority_district,292,Rugby,NA,local_authority_district,character -Accident,local_authority_district,293,Stratford-upon-Avon,NA,local_authority_district,character -Accident,local_authority_district,294,Warwick,NA,local_authority_district,character -Accident,local_authority_district,300,Birmingham,NA,local_authority_district,character -Accident,local_authority_district,302,Coventry,NA,local_authority_district,character -Accident,local_authority_district,303,Dudley,NA,local_authority_district,character -Accident,local_authority_district,305,Sandwell,NA,local_authority_district,character -Accident,local_authority_district,306,Solihull,NA,local_authority_district,character -Accident,local_authority_district,307,Walsall,NA,local_authority_district,character -Accident,local_authority_district,309,Wolverhampton,NA,local_authority_district,character -Accident,local_authority_district,320,Amber Valley,NA,local_authority_district,character -Accident,local_authority_district,321,Bolsover,NA,local_authority_district,character -Accident,local_authority_district,322,Chesterfield,NA,local_authority_district,character -Accident,local_authority_district,323,Derby,NA,local_authority_district,character -Accident,local_authority_district,324,Erewash,NA,local_authority_district,character -Accident,local_authority_district,325,High Peak,NA,local_authority_district,character -Accident,local_authority_district,327,North East Derbyshire,NA,local_authority_district,character -Accident,local_authority_district,328,South Derbyshire,NA,local_authority_district,character -Accident,local_authority_district,329,Derbyshire Dales,NA,local_authority_district,character -Accident,local_authority_district,340,Ashfield,NA,local_authority_district,character -Accident,local_authority_district,341,Bassetlaw,NA,local_authority_district,character -Accident,local_authority_district,342,Broxtowe,NA,local_authority_district,character -Accident,local_authority_district,343,Gedling,NA,local_authority_district,character -Accident,local_authority_district,344,Mansfield,NA,local_authority_district,character -Accident,local_authority_district,345,Newark and Sherwood,NA,local_authority_district,character -Accident,local_authority_district,346,Nottingham,NA,local_authority_district,character -Accident,local_authority_district,347,Rushcliffe,NA,local_authority_district,character -Accident,local_authority_district,350,Boston,NA,local_authority_district,character -Accident,local_authority_district,351,East Lindsey,NA,local_authority_district,character -Accident,local_authority_district,352,Lincoln,NA,local_authority_district,character -Accident,local_authority_district,353,North Kesteven,NA,local_authority_district,character -Accident,local_authority_district,354,South Holland,NA,local_authority_district,character -Accident,local_authority_district,355,South Kesteven,NA,local_authority_district,character -Accident,local_authority_district,356,West Lindsey,NA,local_authority_district,character -Accident,local_authority_district,360,Blaby,NA,local_authority_district,character -Accident,local_authority_district,361,Hinckley and Bosworth,NA,local_authority_district,character -Accident,local_authority_district,362,Charnwood,NA,local_authority_district,character -Accident,local_authority_district,363,Harborough,NA,local_authority_district,character -Accident,local_authority_district,364,Leicester,NA,local_authority_district,character -Accident,local_authority_district,365,Melton,NA,local_authority_district,character -Accident,local_authority_district,366,North West Leicestershire,NA,local_authority_district,character -Accident,local_authority_district,367,Oadby and Wigston,NA,local_authority_district,character -Accident,local_authority_district,368,Rutland,NA,local_authority_district,character -Accident,local_authority_district,380,Corby,NA,local_authority_district,character -Accident,local_authority_district,381,Daventry,NA,local_authority_district,character -Accident,local_authority_district,382,East Northamptonshire,NA,local_authority_district,character -Accident,local_authority_district,383,Kettering,NA,local_authority_district,character -Accident,local_authority_district,384,Northampton,NA,local_authority_district,character -Accident,local_authority_district,385,South Northamptonshire,NA,local_authority_district,character -Accident,local_authority_district,386,Wellingborough,NA,local_authority_district,character -Accident,local_authority_district,390,Cambridge,NA,local_authority_district,character -Accident,local_authority_district,391,East Cambridgeshire,NA,local_authority_district,character -Accident,local_authority_district,392,Fenland,NA,local_authority_district,character -Accident,local_authority_district,393,Huntingdonshire,NA,local_authority_district,character -Accident,local_authority_district,394,Peterborough,NA,local_authority_district,character -Accident,local_authority_district,395,South Cambridgeshire,NA,local_authority_district,character -Accident,local_authority_district,400,Breckland,NA,local_authority_district,character -Accident,local_authority_district,401,Broadland,NA,local_authority_district,character -Accident,local_authority_district,402,Great Yarmouth,NA,local_authority_district,character -Accident,local_authority_district,404,Norwich,NA,local_authority_district,character -Accident,local_authority_district,405,North Norfolk,NA,local_authority_district,character -Accident,local_authority_district,406,South Norfolk,NA,local_authority_district,character -Accident,local_authority_district,407,King's Lynn and West Norfolk,NA,local_authority_district,character -Accident,local_authority_district,410,Babergh,NA,local_authority_district,character -Accident,local_authority_district,411,Forest Heath,NA,local_authority_district,character -Accident,local_authority_district,412,Ipswich,NA,local_authority_district,character -Accident,local_authority_district,413,Mid Suffolk,NA,local_authority_district,character -Accident,local_authority_district,414,St. Edmundsbury,NA,local_authority_district,character -Accident,local_authority_district,415,Suffolk Coastal,NA,local_authority_district,character -Accident,local_authority_district,416,Waveney,NA,local_authority_district,character -Accident,local_authority_district,420,Bedford,NA,local_authority_district,character -Accident,local_authority_district,421,Luton,NA,local_authority_district,character -Accident,local_authority_district,422,Mid Bedfordshire,NA,local_authority_district,character -Accident,local_authority_district,423,South Bedfordshire,NA,local_authority_district,character -Accident,local_authority_district,424,Central Bedfordshire,NA,local_authority_district,character -Accident,local_authority_district,430,Broxbourne,NA,local_authority_district,character -Accident,local_authority_district,431,Dacorum,NA,local_authority_district,character -Accident,local_authority_district,432,East Hertfordshire,NA,local_authority_district,character -Accident,local_authority_district,433,North Hertfordshire,NA,local_authority_district,character -Accident,local_authority_district,434,St. Albans,NA,local_authority_district,character -Accident,local_authority_district,435,Stevenage,NA,local_authority_district,character -Accident,local_authority_district,436,Three Rivers,NA,local_authority_district,character -Accident,local_authority_district,437,Watford,NA,local_authority_district,character -Accident,local_authority_district,438,Welwyn Hatfield,NA,local_authority_district,character -Accident,local_authority_district,450,Basildon,NA,local_authority_district,character -Accident,local_authority_district,451,Braintree,NA,local_authority_district,character -Accident,local_authority_district,452,Brentwood,NA,local_authority_district,character -Accident,local_authority_district,453,Castle Point,NA,local_authority_district,character -Accident,local_authority_district,454,Chelmsford,NA,local_authority_district,character -Accident,local_authority_district,455,Colchester,NA,local_authority_district,character -Accident,local_authority_district,456,Epping Forest,NA,local_authority_district,character -Accident,local_authority_district,457,Harlow,NA,local_authority_district,character -Accident,local_authority_district,458,Maldon,NA,local_authority_district,character -Accident,local_authority_district,459,Rochford,NA,local_authority_district,character -Accident,local_authority_district,460,Southend-on-Sea,NA,local_authority_district,character -Accident,local_authority_district,461,Tendring,NA,local_authority_district,character -Accident,local_authority_district,462,Thurrock,NA,local_authority_district,character -Accident,local_authority_district,463,Uttlesford,NA,local_authority_district,character -Accident,local_authority_district,470,Bracknell Forest,NA,local_authority_district,character -Accident,local_authority_district,471,West Berkshire,NA,local_authority_district,character -Accident,local_authority_district,472,Reading,NA,local_authority_district,character -Accident,local_authority_district,473,Slough,NA,local_authority_district,character -Accident,local_authority_district,474,Windsor and Maidenhead,NA,local_authority_district,character -Accident,local_authority_district,475,Wokingham,NA,local_authority_district,character -Accident,local_authority_district,476,Aylesbury Vale,NA,local_authority_district,character -Accident,local_authority_district,477,South Bucks,NA,local_authority_district,character -Accident,local_authority_district,478,Chiltern,NA,local_authority_district,character -Accident,local_authority_district,479,Milton Keynes,NA,local_authority_district,character -Accident,local_authority_district,480,Wycombe,NA,local_authority_district,character -Accident,local_authority_district,481,Cherwell,NA,local_authority_district,character -Accident,local_authority_district,482,Oxford,NA,local_authority_district,character -Accident,local_authority_district,483,Vale of White Horse,NA,local_authority_district,character -Accident,local_authority_district,484,South Oxfordshire,NA,local_authority_district,character -Accident,local_authority_district,485,West Oxfordshire,NA,local_authority_district,character -Accident,local_authority_district,490,Basingstoke and Deane,NA,local_authority_district,character -Accident,local_authority_district,491,Eastleigh,NA,local_authority_district,character -Accident,local_authority_district,492,Fareham,NA,local_authority_district,character -Accident,local_authority_district,493,Gosport,NA,local_authority_district,character -Accident,local_authority_district,494,Hart,NA,local_authority_district,character -Accident,local_authority_district,495,Havant,NA,local_authority_district,character -Accident,local_authority_district,496,New Forest,NA,local_authority_district,character -Accident,local_authority_district,497,East Hampshire,NA,local_authority_district,character -Accident,local_authority_district,498,Portsmouth,NA,local_authority_district,character -Accident,local_authority_district,499,Rushmoor,NA,local_authority_district,character -Accident,local_authority_district,500,Southampton,NA,local_authority_district,character -Accident,local_authority_district,501,Test Valley,NA,local_authority_district,character -Accident,local_authority_district,502,Winchester,NA,local_authority_district,character -Accident,local_authority_district,505,Isle of Wight,NA,local_authority_district,character -Accident,local_authority_district,510,Elmbridge,NA,local_authority_district,character -Accident,local_authority_district,511,Guildford,NA,local_authority_district,character -Accident,local_authority_district,512,Mole Valley,NA,local_authority_district,character -Accident,local_authority_district,513,Reigate and Banstead,NA,local_authority_district,character -Accident,local_authority_district,514,Runnymede,NA,local_authority_district,character -Accident,local_authority_district,515,Surrey Heath,NA,local_authority_district,character -Accident,local_authority_district,516,Tandridge,NA,local_authority_district,character -Accident,local_authority_district,517,Waverley,NA,local_authority_district,character -Accident,local_authority_district,518,Woking,NA,local_authority_district,character -Accident,local_authority_district,530,Ashford,NA,local_authority_district,character -Accident,local_authority_district,531,Canterbury,NA,local_authority_district,character -Accident,local_authority_district,532,Dartford,NA,local_authority_district,character -Accident,local_authority_district,533,Dover,NA,local_authority_district,character -Accident,local_authority_district,535,Gravesham,NA,local_authority_district,character -Accident,local_authority_district,536,Maidstone,NA,local_authority_district,character -Accident,local_authority_district,538,Sevenoaks,NA,local_authority_district,character -Accident,local_authority_district,539,Shepway,NA,local_authority_district,character -Accident,local_authority_district,540,Swale,NA,local_authority_district,character -Accident,local_authority_district,541,Thanet,NA,local_authority_district,character -Accident,local_authority_district,542,Tonbridge and Malling,NA,local_authority_district,character -Accident,local_authority_district,543,Tunbridge Wells,NA,local_authority_district,character -Accident,local_authority_district,544,Medway,NA,local_authority_district,character -Accident,local_authority_district,551,Eastbourne,NA,local_authority_district,character -Accident,local_authority_district,552,Hastings,NA,local_authority_district,character -Accident,local_authority_district,554,Lewes,NA,local_authority_district,character -Accident,local_authority_district,555,Rother,NA,local_authority_district,character -Accident,local_authority_district,556,Wealden,NA,local_authority_district,character -Accident,local_authority_district,557,Adur,NA,local_authority_district,character -Accident,local_authority_district,558,Arun,NA,local_authority_district,character -Accident,local_authority_district,559,Chichester,NA,local_authority_district,character -Accident,local_authority_district,560,Crawley,NA,local_authority_district,character -Accident,local_authority_district,562,Horsham,NA,local_authority_district,character -Accident,local_authority_district,563,Mid Sussex,NA,local_authority_district,character -Accident,local_authority_district,564,Worthing,NA,local_authority_district,character -Accident,local_authority_district,565,Brighton and Hove,NA,local_authority_district,character -Accident,local_authority_district,570,City of London,NA,local_authority_district,character -Accident,local_authority_district,580,East Devon,NA,local_authority_district,character -Accident,local_authority_district,581,Exeter,NA,local_authority_district,character -Accident,local_authority_district,582,North Devon,NA,local_authority_district,character -Accident,local_authority_district,583,Plymouth,NA,local_authority_district,character -Accident,local_authority_district,584,South Hams,NA,local_authority_district,character -Accident,local_authority_district,585,Teignbridge,NA,local_authority_district,character -Accident,local_authority_district,586,Mid Devon,NA,local_authority_district,character -Accident,local_authority_district,587,Torbay,NA,local_authority_district,character -Accident,local_authority_district,588,Torridge,NA,local_authority_district,character -Accident,local_authority_district,589,West Devon,NA,local_authority_district,character -Accident,local_authority_district,590,Caradon,NA,local_authority_district,character -Accident,local_authority_district,591,Carrick,NA,local_authority_district,character -Accident,local_authority_district,592,Kerrier,NA,local_authority_district,character -Accident,local_authority_district,593,North Cornwall,NA,local_authority_district,character -Accident,local_authority_district,594,Penwith,NA,local_authority_district,character -Accident,local_authority_district,595,Restormel,NA,local_authority_district,character -Accident,local_authority_district,596,Cornwall,NA,local_authority_district,character -Accident,local_authority_district,601,"Bristol, City of",NA,local_authority_district,character -Accident,local_authority_district,605,North Somerset,NA,local_authority_district,character -Accident,local_authority_district,606,Mendip,NA,local_authority_district,character -Accident,local_authority_district,607,Sedgemoor,NA,local_authority_district,character -Accident,local_authority_district,608,Taunton Deane,NA,local_authority_district,character -Accident,local_authority_district,609,West Somerset,NA,local_authority_district,character -Accident,local_authority_district,610,South Somerset,NA,local_authority_district,character -Accident,local_authority_district,611,Bath and North East Somerset,NA,local_authority_district,character -Accident,local_authority_district,612,South Gloucestershire,NA,local_authority_district,character -Accident,local_authority_district,620,Cheltenham,NA,local_authority_district,character -Accident,local_authority_district,621,Cotswold,NA,local_authority_district,character -Accident,local_authority_district,622,Forest of Dean,NA,local_authority_district,character -Accident,local_authority_district,623,Gloucester,NA,local_authority_district,character -Accident,local_authority_district,624,Stroud,NA,local_authority_district,character -Accident,local_authority_district,625,Tewkesbury,NA,local_authority_district,character -Accident,local_authority_district,630,Kennet,NA,local_authority_district,character -Accident,local_authority_district,631,North Wiltshire,NA,local_authority_district,character -Accident,local_authority_district,632,Salisbury,NA,local_authority_district,character -Accident,local_authority_district,633,Swindon,NA,local_authority_district,character -Accident,local_authority_district,634,West Wiltshire,NA,local_authority_district,character -Accident,local_authority_district,635,Wiltshire,NA,local_authority_district,character -Accident,local_authority_district,640,Bournemouth,NA,local_authority_district,character -Accident,local_authority_district,641,Christchurch,NA,local_authority_district,character -Accident,local_authority_district,642,North Dorset,NA,local_authority_district,character -Accident,local_authority_district,643,Poole,NA,local_authority_district,character -Accident,local_authority_district,644,Purbeck,NA,local_authority_district,character -Accident,local_authority_district,645,West Dorset,NA,local_authority_district,character -Accident,local_authority_district,646,Weymouth and Portland,NA,local_authority_district,character -Accident,local_authority_district,647,East Dorset,NA,local_authority_district,character -Accident,local_authority_district,720,Isle of Anglesey,NA,local_authority_district,character -Accident,local_authority_district,721,Conwy,NA,local_authority_district,character -Accident,local_authority_district,722,Gwynedd,NA,local_authority_district,character -Accident,local_authority_district,723,Denbighshire,NA,local_authority_district,character -Accident,local_authority_district,724,Flintshire,NA,local_authority_district,character -Accident,local_authority_district,725,Wrexham,NA,local_authority_district,character -Accident,local_authority_district,730,Blaenau Gwent,NA,local_authority_district,character -Accident,local_authority_district,731,Caerphilly,NA,local_authority_district,character -Accident,local_authority_district,732,Monmouthshire,NA,local_authority_district,character -Accident,local_authority_district,733,Newport,NA,local_authority_district,character -Accident,local_authority_district,734,Torfaen,NA,local_authority_district,character -Accident,local_authority_district,740,Bridgend,NA,local_authority_district,character -Accident,local_authority_district,741,Cardiff,NA,local_authority_district,character -Accident,local_authority_district,742,Merthyr Tydfil,NA,local_authority_district,character -Accident,local_authority_district,743,Neath Port Talbot,NA,local_authority_district,character -Accident,local_authority_district,744,"Rhondda, Cynon, Taff",NA,local_authority_district,character -Accident,local_authority_district,745,Swansea,NA,local_authority_district,character -Accident,local_authority_district,746,The Vale of Glamorgan,NA,local_authority_district,character -Accident,local_authority_district,750,Ceredigion,NA,local_authority_district,character -Accident,local_authority_district,751,Carmarthenshire,NA,local_authority_district,character -Accident,local_authority_district,752,Pembrokeshire,NA,local_authority_district,character -Accident,local_authority_district,753,Powys,NA,local_authority_district,character -Accident,local_authority_district,910,Aberdeen City,NA,local_authority_district,character -Accident,local_authority_district,911,Aberdeenshire,NA,local_authority_district,character -Accident,local_authority_district,912,Angus,NA,local_authority_district,character -Accident,local_authority_district,913,Argyll and Bute,NA,local_authority_district,character -Accident,local_authority_district,914,Scottish Borders,NA,local_authority_district,character -Accident,local_authority_district,915,Clackmannanshire,NA,local_authority_district,character -Accident,local_authority_district,916,West Dunbartonshire,NA,local_authority_district,character -Accident,local_authority_district,917,Dumfries and Galloway,NA,local_authority_district,character -Accident,local_authority_district,918,Dundee City,NA,local_authority_district,character -Accident,local_authority_district,919,East Ayrshire,NA,local_authority_district,character -Accident,local_authority_district,920,East Dunbartonshire,NA,local_authority_district,character -Accident,local_authority_district,921,East Lothian,NA,local_authority_district,character -Accident,local_authority_district,922,East Renfrewshire,NA,local_authority_district,character -Accident,local_authority_district,923,"Edinburgh, City of",NA,local_authority_district,character -Accident,local_authority_district,924,Falkirk,NA,local_authority_district,character -Accident,local_authority_district,925,Fife,NA,local_authority_district,character -Accident,local_authority_district,926,Glasgow City,NA,local_authority_district,character -Accident,local_authority_district,927,Highland,NA,local_authority_district,character -Accident,local_authority_district,928,Inverclyde,NA,local_authority_district,character -Accident,local_authority_district,929,Midlothian,NA,local_authority_district,character -Accident,local_authority_district,930,Moray,NA,local_authority_district,character -Accident,local_authority_district,931,North Ayrshire,NA,local_authority_district,character -Accident,local_authority_district,932,North Lanarkshire,NA,local_authority_district,character -Accident,local_authority_district,933,Orkney Islands,NA,local_authority_district,character -Accident,local_authority_district,934,Perth and Kinross,NA,local_authority_district,character -Accident,local_authority_district,935,Renfrewshire,NA,local_authority_district,character -Accident,local_authority_district,936,Shetland Islands,NA,local_authority_district,character -Accident,local_authority_district,937,South Ayrshire,NA,local_authority_district,character -Accident,local_authority_district,938,South Lanarkshire,NA,local_authority_district,character -Accident,local_authority_district,939,Stirling,NA,local_authority_district,character -Accident,local_authority_district,940,West Lothian,NA,local_authority_district,character -Accident,local_authority_district,941,Western Isles,NA,local_authority_district,character -Accident,first_road_class,1,Motorway,NA,first_road_class,character -Accident,first_road_class,2,A(M),NA,first_road_class,character -Accident,first_road_class,3,A,NA,first_road_class,character -Accident,first_road_class,4,B,NA,first_road_class,character -Accident,first_road_class,5,C,NA,first_road_class,character -Accident,first_road_class,6,Unclassified,NA,first_road_class,character -Accident,first_road_number,-1,Unknown,NA,first_road_number,character -Accident,first_road_number,0,first_road_class is C or Unclassified. These roads do not have official numbers so recorded as zero,NA,first_road_number,character -Accident,road_type,1,Roundabout,NA,road_type,character -Accident,road_type,2,One way street,NA,road_type,character -Accident,road_type,3,Dual carriageway,NA,road_type,character -Accident,road_type,6,Single carriageway,NA,road_type,character -Accident,road_type,7,Slip road,NA,road_type,character -Accident,road_type,9,Unknown,NA,road_type,character -Accident,road_type,12,One way street/Slip road,NA,road_type,character -Accident,road_type,-1,Data missing or out of range,NA,road_type,character -Accident,junction_detail,0,Not at junction or within 20 metres,NA,junction_detail,character -Accident,junction_detail,1,Roundabout,NA,junction_detail,character -Accident,junction_detail,2,Mini-roundabout,NA,junction_detail,character -Accident,junction_detail,3,T or staggered junction,NA,junction_detail,character -Accident,junction_detail,5,Slip road,NA,junction_detail,character -Accident,junction_detail,6,Crossroads,NA,junction_detail,character -Accident,junction_detail,7,More than 4 arms (not roundabout),NA,junction_detail,character -Accident,junction_detail,8,Private drive or entrance,NA,junction_detail,character -Accident,junction_detail,9,Other junction,NA,junction_detail,character -Accident,junction_detail,99,unknown (self reported),NA,junction_detail,character -Accident,junction_detail,-1,Data missing or out of range,NA,junction_detail,character -Accident,junction_control,0,Not at junction or within 20 metres,NA,junction_control,character -Accident,junction_control,1,Authorised person,NA,junction_control,character -Accident,junction_control,2,Auto traffic signal,NA,junction_control,character -Accident,junction_control,3,Stop sign,NA,junction_control,character -Accident,junction_control,4,Give way or uncontrolled,NA,junction_control,character -Accident,junction_control,-1,Data missing or out of range,NA,junction_control,character -Accident,junction_control,9,unknown (self reported),NA,junction_control,character -Accident,second_road_class,0,Not at junction or within 20 metres,NA,second_road_class,character -Accident,second_road_class,1,Motorway,NA,second_road_class,character -Accident,second_road_class,2,A(M),NA,second_road_class,character -Accident,second_road_class,3,A,NA,second_road_class,character -Accident,second_road_class,4,B,NA,second_road_class,character -Accident,second_road_class,5,C,NA,second_road_class,character -Accident,second_road_class,6,Unclassified,NA,second_road_class,character -Accident,second_road_number,-1,Unknown,NA,second_road_number,character -Accident,second_road_number,0,first_road_class is C or Unclassified. These roads do not have official numbers so recorded as zero,NA,second_road_number,character -Accident,pedestrian_crossing_human_control,0,None within 50 metres,NA,pedestrian_crossing_human_control,character -Accident,pedestrian_crossing_human_control,1,Control by school crossing patrol,NA,pedestrian_crossing_human_control,character -Accident,pedestrian_crossing_human_control,2,Control by other authorised person,NA,pedestrian_crossing_human_control,character -Accident,pedestrian_crossing_human_control,-1,Data missing or out of range,NA,pedestrian_crossing_human_control,character -Accident,pedestrian_crossing_human_control,9,unknown (self reported),NA,pedestrian_crossing_human_control,character -Accident,pedestrian_crossing_physical_facilities,0,No physical crossing facilities within 50 metres,NA,pedestrian_crossing_physical_facilities,character -Accident,pedestrian_crossing_physical_facilities,1,Zebra,NA,pedestrian_crossing_physical_facilities,character -Accident,pedestrian_crossing_physical_facilities,4,"Pelican, puffin, toucan or similar non-junction pedestrian light crossing",NA,pedestrian_crossing_physical_facilities,character -Accident,pedestrian_crossing_physical_facilities,5,Pedestrian phase at traffic signal junction,NA,pedestrian_crossing_physical_facilities,character -Accident,pedestrian_crossing_physical_facilities,7,Footbridge or subway,NA,pedestrian_crossing_physical_facilities,character -Accident,pedestrian_crossing_physical_facilities,8,Central refuge,NA,pedestrian_crossing_physical_facilities,character -Accident,pedestrian_crossing_physical_facilities,-1,Data missing or out of range,NA,pedestrian_crossing_physical_facilities,character -Accident,pedestrian_crossing_physical_facilities,9,unknown (self reported),NA,pedestrian_crossing_physical_facilities,character -Accident,light_conditions,1,Daylight,NA,light_conditions,character -Accident,light_conditions,4,Darkness - lights lit,NA,light_conditions,character -Accident,light_conditions,5,Darkness - lights unlit,NA,light_conditions,character -Accident,light_conditions,6,Darkness - no lighting,NA,light_conditions,character -Accident,light_conditions,7,Darkness - lighting unknown,NA,light_conditions,character -Accident,light_conditions,-1,Data missing or out of range,NA,light_conditions,character -Accident,weather_conditions,1,Fine no high winds,NA,weather_conditions,character -Accident,weather_conditions,2,Raining no high winds,NA,weather_conditions,character -Accident,weather_conditions,3,Snowing no high winds,NA,weather_conditions,character -Accident,weather_conditions,4,Fine + high winds,NA,weather_conditions,character -Accident,weather_conditions,5,Raining + high winds,NA,weather_conditions,character -Accident,weather_conditions,6,Snowing + high winds,NA,weather_conditions,character -Accident,weather_conditions,7,Fog or mist,NA,weather_conditions,character -Accident,weather_conditions,8,Other,NA,weather_conditions,character -Accident,weather_conditions,9,Unknown,NA,weather_conditions,character -Accident,weather_conditions,-1,Data missing or out of range,NA,weather_conditions,character -Accident,road_surface_conditions,1,Dry,NA,road_surface_conditions,character -Accident,road_surface_conditions,2,Wet or damp,NA,road_surface_conditions,character -Accident,road_surface_conditions,3,Snow,NA,road_surface_conditions,character -Accident,road_surface_conditions,4,Frost or ice,NA,road_surface_conditions,character -Accident,road_surface_conditions,5,Flood over 3cm. deep,NA,road_surface_conditions,character -Accident,road_surface_conditions,6,Oil or diesel,NA,road_surface_conditions,character -Accident,road_surface_conditions,7,Mud,NA,road_surface_conditions,character -Accident,road_surface_conditions,-1,Data missing or out of range,NA,road_surface_conditions,character -Accident,road_surface_conditions,9,unknown (self reported),NA,road_surface_conditions,character -Accident,special_conditions_at_site,0,None,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,1,Auto traffic signal - out,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,2,Auto signal part defective,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,3,Road sign or marking defective or obscured,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,4,Roadworks,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,5,Road surface defective,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,6,Oil or diesel,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,7,Mud,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,-1,Data missing or out of range,NA,special_conditions_at_site,character -Accident,special_conditions_at_site,9,unknown (self reported),NA,special_conditions_at_site,character -Accident,carriageway_hazards,0,None,NA,carriageway_hazards,character -Accident,carriageway_hazards,1,Vehicle load on road,NA,carriageway_hazards,character -Accident,carriageway_hazards,2,Other object on road,NA,carriageway_hazards,character -Accident,carriageway_hazards,3,Previous accident,NA,carriageway_hazards,character -Accident,carriageway_hazards,4,Dog on road,NA,carriageway_hazards,character -Accident,carriageway_hazards,5,Other animal on road,NA,carriageway_hazards,character -Accident,carriageway_hazards,6,Pedestrian in carriageway - not injured,NA,carriageway_hazards,character -Accident,carriageway_hazards,7,Any animal in carriageway (except ridden horse),NA,carriageway_hazards,character -Accident,carriageway_hazards,-1,Data missing or out of range,NA,carriageway_hazards,character -Accident,carriageway_hazards,9,unknown (self reported),NA,carriageway_hazards,character -Accident,urban_or_rural_area,1,Urban,field introduced in 1994,urban_or_rural_area,character -Accident,urban_or_rural_area,2,Rural,field introduced in 1994,urban_or_rural_area,character -Accident,urban_or_rural_area,3,Unallocated,field introduced in 1994,urban_or_rural_area,character -Accident,urban_or_rural_area,-1,Data missing or out of range,field introduced in 1994,urban_or_rural_area,character -Accident,did_police_officer_attend_scene_of_accident,1,Yes,NA,did_police_officer_attend_scene_of_accident,character -Accident,did_police_officer_attend_scene_of_accident,2,No,NA,did_police_officer_attend_scene_of_accident,character -Accident,did_police_officer_attend_scene_of_accident,3,No - accident was reported using a self completion form (self rep only),NA,did_police_officer_attend_scene_of_accident,character -Accident,did_police_officer_attend_scene_of_accident,-1,Data missing or out of range,NA,did_police_officer_attend_scene_of_accident,character -Accident,trunk_road_flag,1,Trunk (Roads managed by Highways England),NA,trunk_road_flag,character -Accident,trunk_road_flag,2,Non-trunk,NA,trunk_road_flag,character -Accident,trunk_road_flag,-1,Data missing or out of range,NA,trunk_road_flag,character -Vehicle,vehicle_type,1,Pedal cycle,NA,vehicle_type,character -Vehicle,vehicle_type,2,Motorcycle 50cc and under,NA,vehicle_type,character -Vehicle,vehicle_type,3,Motorcycle 125cc and under,category introduced in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,4,Motorcycle over 125cc and up to 500cc,category introduced in 2005 specification,vehicle_type,NA -Vehicle,vehicle_type,5,Motorcycle over 500cc,category introduced in 2005 specification,vehicle_type,NA -Vehicle,vehicle_type,8,Taxi/Private hire car,category introduced in 2005 specification,vehicle_type,NA -Vehicle,vehicle_type,9,Car,category introduced in 2005 specification,vehicle_type,NA -Vehicle,vehicle_type,10,Minibus (8 - 16 passenger seats),category introduced in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,11,Bus or coach (17 or more pass seats),NA,vehicle_type,character -Vehicle,vehicle_type,16,Ridden horse,category introduced in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,17,Agricultural vehicle,category introduced in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,18,Tram,category introduced in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,19,Van / Goods 3.5 tonnes mgw or under,NA,vehicle_type,character -Vehicle,vehicle_type,20,Goods over 3.5t. and under 7.5t,category introduced in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,21,Goods 7.5 tonnes mgw and over,category introduced in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,22,Mobility scooter,cateogry introduced in 2011 specification,vehicle_type,NA -Vehicle,vehicle_type,23,Electric motorcycle,cateogry introduced in 2011 specification,vehicle_type,NA -Vehicle,vehicle_type,90,Other vehicle,cateogry introduced in 2011 specification,vehicle_type,NA -Vehicle,vehicle_type,97,Motorcycle - unknown cc,cateogry introduced in 2011 specification,vehicle_type,NA -Vehicle,vehicle_type,98,Goods vehicle - unknown weight,cateogry introduced in 2011 specification,vehicle_type,NA -Vehicle,vehicle_type,99,Unknown vehicle type (self rep only),cateogry introduced in 2011 specification,vehicle_type,NA -Vehicle,vehicle_type,103,Motorcycle - Scooter (1979-1998),cateogory discontinued in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,104,Motorcycle (1979-1998),cateogory discontinued in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,105,Motorcycle - Combination (1979-1998),cateogory discontinued in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,106,Motorcycle over 125cc (1999-2004),cateogory discontinued in 2005 specification,vehicle_type,NA -Vehicle,vehicle_type,108,Taxi (excluding private hire cars) (1979-2004),cateogory discontinued in 2005 specification,vehicle_type,NA -Vehicle,vehicle_type,109,Car (including private hire cars) (1979-2004),cateogory discontinued in 2005 specification,vehicle_type,NA -Vehicle,vehicle_type,110,Minibus/Motor caravan (1979-1998),cateogory discontinued in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,113,Goods over 3.5 tonnes (1979-1998),cateogory discontinued in 1999 specification,vehicle_type,NA -Vehicle,vehicle_type,-1,Data missing or out of range,NA,vehicle_type,character -Vehicle,towing_and_articulation,0,No tow/articulation,NA,towing_and_articulation,character -Vehicle,towing_and_articulation,1,Articulated vehicle,NA,towing_and_articulation,character -Vehicle,towing_and_articulation,2,Double or multiple trailer,NA,towing_and_articulation,character -Vehicle,towing_and_articulation,3,Caravan,NA,towing_and_articulation,character -Vehicle,towing_and_articulation,4,Single trailer,NA,towing_and_articulation,character -Vehicle,towing_and_articulation,5,Other tow,NA,towing_and_articulation,character -Vehicle,towing_and_articulation,9,unknown (self reported),NA,towing_and_articulation,character -Vehicle,towing_and_articulation,-1,Data missing or out of range,NA,towing_and_articulation,character -Vehicle,vehicle_manoeuvre,1,Reversing,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,2,Parked,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,3,Waiting to go - held up,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,4,Slowing or stopping,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,5,Moving off,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,6,U-turn,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,7,Turning left,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,8,Waiting to turn left,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,9,Turning right,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,10,Waiting to turn right,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,11,Changing lane to left,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,12,Changing lane to right,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,13,Overtaking moving vehicle - offside,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,14,Overtaking static vehicle - offside,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,15,Overtaking - nearside,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,16,Going ahead left-hand bend,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,17,Going ahead right-hand bend,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,18,Going ahead other,NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,99,unknown (self reported),NA,vehicle_manoeuvre,character -Vehicle,vehicle_manoeuvre,-1,Data missing or out of range,NA,vehicle_manoeuvre,character -Vehicle,vehicle_direction_from,0,Parked,both vehicle_direction_from and vehicle_direction_to should be 0,vehicle_direction_from,character -Vehicle,vehicle_direction_from,1,North,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,2,North East,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,3,East,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,4,South East,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,5,South East,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,6,South West,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,7,West,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,8,North West,NA,vehicle_direction_from,NA -Vehicle,vehicle_direction_from,9,unknown (self reported),both vehicle_direction_from and vehicle_direction_to should be 9,vehicle_direction_from,NA -Vehicle,vehicle_direction_to,0,Parked,both vehicle_direction_from and vehicle_direction_to should be 0,vehicle_direction_to,character -Vehicle,vehicle_direction_to,1,North,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,2,North East,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,3,East,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,4,South East,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,5,South East,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,6,South West,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,7,West,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,8,North West,NA,vehicle_direction_to,NA -Vehicle,vehicle_direction_to,9,unknown (self reported),both vehicle_direction_from and vehicle_direction_to should be 9,vehicle_direction_to,NA -Vehicle,vehicle_location_restricted_lane,0,On main c'way - not in restricted lane,NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,1,Tram/Light rail track,NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,2,Bus lane,NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,3,Busway (including guided busway),NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,4,Cycle lane (on main carriageway),NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,5,Cycleway or shared use footway (not part of main carriageway),NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,6,On lay-by or hard shoulder,NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,7,Entering lay-by or hard shoulder,NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,8,Leaving lay-by or hard shoulder,NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,9,Footway (pavement),NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,10,Not on carriageway,NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,99,unknown (self reported),NA,vehicle_location_restricted_lane,character -Vehicle,vehicle_location_restricted_lane,-1,Data missing or out of range,NA,vehicle_location_restricted_lane,character -Vehicle,junction_location,0,Not at or within 20 metres of junction,NA,junction_location,character -Vehicle,junction_location,1,Approaching junction or waiting/parked at junction approach,NA,junction_location,character -Vehicle,junction_location,2,Cleared junction or waiting/parked at junction exit,NA,junction_location,character -Vehicle,junction_location,3,Leaving roundabout,NA,junction_location,character -Vehicle,junction_location,4,Entering roundabout,NA,junction_location,character -Vehicle,junction_location,5,Leaving main road,NA,junction_location,character -Vehicle,junction_location,6,Entering main road,NA,junction_location,character -Vehicle,junction_location,7,Entering from slip road,NA,junction_location,character -Vehicle,junction_location,8,Mid Junction - on roundabout or on main road,NA,junction_location,character -Vehicle,junction_location,9,unknown (self reported),NA,junction_location,character -Vehicle,junction_location,-1,Data missing or out of range,NA,junction_location,character -Vehicle,skidding_and_overturning,0,None,NA,skidding_and_overturning,character -Vehicle,skidding_and_overturning,1,Skidded,NA,skidding_and_overturning,character -Vehicle,skidding_and_overturning,2,Skidded and overturned,NA,skidding_and_overturning,character -Vehicle,skidding_and_overturning,3,Jackknifed,NA,skidding_and_overturning,character -Vehicle,skidding_and_overturning,4,Jackknifed and overturned,NA,skidding_and_overturning,character -Vehicle,skidding_and_overturning,5,Overturned,NA,skidding_and_overturning,character -Vehicle,skidding_and_overturning,9,unknown (self reported),NA,skidding_and_overturning,character -Vehicle,skidding_and_overturning,-1,Data missing or out of range,NA,skidding_and_overturning,character -Vehicle,hit_object_in_carriageway,0,None,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,1,Previous accident,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,2,Road works,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,4,Parked vehicle,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,5,Bridge (roof),NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,6,Bridge (side),NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,7,Bollard or refuge,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,8,Open door of vehicle,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,9,Central island of roundabout,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,10,Kerb,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,11,Other object,NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,12,Any animal (except ridden horse),NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,99,unknown (self reported),NA,hit_object_in_carriageway,character -Vehicle,hit_object_in_carriageway,-1,Data missing or out of range,NA,hit_object_in_carriageway,character -Vehicle,vehicle_leaving_carriageway,0,Did not leave carriageway,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,1,Nearside,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,2,Nearside and rebounded,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,3,Straight ahead at junction,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,4,Offside on to central reservation,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,5,Offside on to centrl res + rebounded,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,6,Offside - crossed central reservation,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,7,Offside,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,8,Offside and rebounded,NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,9,unknown (self reported),NA,vehicle_leaving_carriageway,character -Vehicle,vehicle_leaving_carriageway,-1,Data missing or out of range,NA,vehicle_leaving_carriageway,character -Vehicle,hit_object_off_carriageway,0,None,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,1,Road sign or traffic signal,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,2,Lamp post,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,3,Telegraph or electricity pole,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,4,Tree,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,5,Bus stop or bus shelter,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,6,Central crash barrier,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,7,Near/Offside crash barrier,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,8,Submerged in water,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,9,Entered ditch,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,10,Other permanent object,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,11,Wall or fence,NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,99,unknown (self reported),NA,hit_object_off_carriageway,character -Vehicle,hit_object_off_carriageway,-1,Data missing or out of range,NA,hit_object_off_carriageway,character -Vehicle,first_point_of_impact,0,Did not impact,NA,first_point_of_impact,character -Vehicle,first_point_of_impact,1,Front,NA,first_point_of_impact,character -Vehicle,first_point_of_impact,2,Back,NA,first_point_of_impact,character -Vehicle,first_point_of_impact,3,Offside,NA,first_point_of_impact,character -Vehicle,first_point_of_impact,4,Nearside,NA,first_point_of_impact,character -Vehicle,first_point_of_impact,9,unknown (self reported),NA,first_point_of_impact,character -Vehicle,first_point_of_impact,-1,Data missing or out of range,NA,first_point_of_impact,character -Vehicle,vehicle_left_hand_drive,1,No,NA,vehicle_left_hand_drive,character -Vehicle,vehicle_left_hand_drive,2,Yes,NA,vehicle_left_hand_drive,character -Vehicle,vehicle_left_hand_drive,9,Unknown,NA,vehicle_left_hand_drive,character -Vehicle,vehicle_left_hand_drive,-1,Data missing or out of range,NA,vehicle_left_hand_drive,character -Vehicle,journey_purpose_of_driver,1,Journey as part of work,NA,journey_purpose_of_driver,character -Vehicle,journey_purpose_of_driver,2,Commuting to/from work,NA,journey_purpose_of_driver,character -Vehicle,journey_purpose_of_driver,3,Taking pupil to/from school,NA,journey_purpose_of_driver,character -Vehicle,journey_purpose_of_driver,4,Pupil riding to/from school,NA,journey_purpose_of_driver,character -Vehicle,journey_purpose_of_driver,5,Other,NA,journey_purpose_of_driver,character -Vehicle,journey_purpose_of_driver,6,Not known,NA,journey_purpose_of_driver,character -Vehicle,journey_purpose_of_driver,15,Other/Not known,2005 specification only,journey_purpose_of_driver,NA -Vehicle,journey_purpose_of_driver,-1,Data missing or out of range,NA,journey_purpose_of_driver,character -Vehicle,sex_of_driver,1,Male,NA,sex_of_driver,character -Vehicle,sex_of_driver,2,Female,NA,sex_of_driver,character -Vehicle,sex_of_driver,3,Not known,NA,sex_of_driver,character -Vehicle,sex_of_driver,-1,Data missing or out of range,NA,sex_of_driver,character -Vehicle,age_of_driver,-1,Data missing or out of range,NA,age_of_driver,character -Vehicle,age_band_of_driver,1,0 - 5,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,2,6 - 10,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,3,11 - 15,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,4,16 - 20,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,5,21 - 25,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,6,26 - 35,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,7,36 - 45,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,8,46 - 55,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,9,56 - 65,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,10,66 - 75,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,11,Over 75,NA,age_band_of_driver,character -Vehicle,age_band_of_driver,-1,Data missing or out of range,NA,age_band_of_driver,character -Vehicle,engine_capacity_cc,-1,Data missing or out of range,NA,engine_capacity_cc,character -Vehicle,propulsion_code,1,Petrol,NA,propulsion_code,character -Vehicle,propulsion_code,2,Heavy oil,NA,propulsion_code,character -Vehicle,propulsion_code,3,Electric,NA,propulsion_code,character -Vehicle,propulsion_code,4,Steam,NA,propulsion_code,character -Vehicle,propulsion_code,5,Gas,NA,propulsion_code,character -Vehicle,propulsion_code,6,Petrol/Gas (LPG),NA,propulsion_code,character -Vehicle,propulsion_code,7,Gas/Bi-fuel,NA,propulsion_code,character -Vehicle,propulsion_code,8,Hybrid electric,NA,propulsion_code,character -Vehicle,propulsion_code,9,Gas Diesel,NA,propulsion_code,character -Vehicle,propulsion_code,10,New fuel technology,NA,propulsion_code,character -Vehicle,propulsion_code,11,Fuel cells,NA,propulsion_code,character -Vehicle,propulsion_code,12,Electric diesel,NA,propulsion_code,character -Vehicle,propulsion_code,-1,Undefined,NA,propulsion_code,character -Vehicle,generic_make_model,-1,Data missing or out of range,field introduced in 2020,generic_make_model,character -Vehicle,driver_imd_decile,1,Most deprived 10%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,2,More deprived 10-20%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,3,More deprived 20-30%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,4,More deprived 30-40%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,5,More deprived 40-50%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,6,Less deprived 40-50%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,7,Less deprived 30-40%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,8,Less deprived 20-30%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,9,Less deprived 10-20%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,10,Least deprived 10%,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_imd_decile,-1,Data missing or out of range,field introduced in 2016,driver_imd_decile,character -Vehicle,driver_home_area_type,1,Urban area,field introduced in 1999,driver_home_area_type,character -Vehicle,driver_home_area_type,2,Small town,field introduced in 1999,driver_home_area_type,character -Vehicle,driver_home_area_type,3,Rural,field introduced in 1999,driver_home_area_type,character -Vehicle,driver_home_area_type,-1,Data missing or out of range,field introduced in 1999,driver_home_area_type,character -e_scooter,vehicle_type,90,Other vehicle,cateogry introduced in 2011 specification,vehicle_type,character -Casualty,casualty_class,1,Driver or rider,NA,casualty_class,character -Casualty,casualty_class,2,Passenger,NA,casualty_class,character -Casualty,casualty_class,3,Pedestrian,NA,casualty_class,character -Casualty,sex_of_casualty,1,Male,NA,sex_of_casualty,character -Casualty,sex_of_casualty,2,Female,NA,sex_of_casualty,character -Casualty,sex_of_casualty,9,unknown (self reported),NA,sex_of_casualty,character -Casualty,sex_of_casualty,-1,Data missing or out of range,NA,sex_of_casualty,character -Casualty,age_of_casualty,-1,Data missing or out of range,NA,age_of_casualty,character -Casualty,age_band_of_casualty,1,0 - 5,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,2,6 - 10,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,3,11 - 15,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,4,16 - 20,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,5,21 - 25,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,6,26 - 35,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,7,36 - 45,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,8,46 - 55,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,9,56 - 65,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,10,66 - 75,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,11,Over 75,NA,age_band_of_casualty,character -Casualty,age_band_of_casualty,-1,Data missing or out of range,NA,age_band_of_casualty,character -Casualty,casualty_severity,1,Fatal,NA,casualty_severity,character -Casualty,casualty_severity,2,Serious,NA,casualty_severity,character -Casualty,casualty_severity,3,Slight,NA,casualty_severity,character -Casualty,pedestrian_location,0,Not a Pedestrian,NA,pedestrian_location,character -Casualty,pedestrian_location,1,Crossing on pedestrian crossing facility,NA,pedestrian_location,character -Casualty,pedestrian_location,2,Crossing in zig-zag approach lines,NA,pedestrian_location,character -Casualty,pedestrian_location,3,Crossing in zig-zag exit lines,NA,pedestrian_location,character -Casualty,pedestrian_location,4,Crossing elsewhere within 50m. of pedestrian crossing,NA,pedestrian_location,character -Casualty,pedestrian_location,5,"In carriageway, crossing elsewhere",NA,pedestrian_location,character -Casualty,pedestrian_location,6,On footway or verge,NA,pedestrian_location,character -Casualty,pedestrian_location,7,"On refuge, central island or central reservation",NA,pedestrian_location,character -Casualty,pedestrian_location,8,"In centre of carriageway - not on refuge, island or central reservation",NA,pedestrian_location,character -Casualty,pedestrian_location,9,"In carriageway, not crossing",NA,pedestrian_location,character -Casualty,pedestrian_location,10,Unknown or other,NA,pedestrian_location,character -Casualty,pedestrian_location,-1,Data missing or out of range,NA,pedestrian_location,character -Casualty,pedestrian_movement,0,Not a Pedestrian,NA,pedestrian_movement,character -Casualty,pedestrian_movement,1,Crossing from driver's nearside,NA,pedestrian_movement,character -Casualty,pedestrian_movement,2,Crossing from nearside - masked by parked or stationary vehicle,NA,pedestrian_movement,character -Casualty,pedestrian_movement,3,Crossing from driver's offside,NA,pedestrian_movement,character -Casualty,pedestrian_movement,4,Crossing from offside - masked by parked or stationary vehicle,NA,pedestrian_movement,character -Casualty,pedestrian_movement,5,"In carriageway, stationary - not crossing (standing or playing)",NA,pedestrian_movement,character -Casualty,pedestrian_movement,6,"In carriageway, stationary - not crossing (standing or playing) - masked by parked or stationary vehicle",NA,pedestrian_movement,character -Casualty,pedestrian_movement,7,"Walking along in carriageway, facing traffic",NA,pedestrian_movement,character -Casualty,pedestrian_movement,8,"Walking along in carriageway, back to traffic",NA,pedestrian_movement,character -Casualty,pedestrian_movement,9,Unknown or other,NA,pedestrian_movement,character -Casualty,pedestrian_movement,-1,Data missing or out of range,NA,pedestrian_movement,character -Casualty,car_passenger,0,Not car passenger,NA,car_passenger,character -Casualty,car_passenger,1,Front seat passenger,NA,car_passenger,character -Casualty,car_passenger,2,Rear seat passenger,NA,car_passenger,character -Casualty,car_passenger,9,unknown (self reported),NA,car_passenger,character -Casualty,car_passenger,-1,Data missing or out of range,NA,car_passenger,character -Casualty,bus_or_coach_passenger,0,Not a bus or coach passenger,NA,bus_or_coach_passenger,character -Casualty,bus_or_coach_passenger,1,Boarding,NA,bus_or_coach_passenger,character -Casualty,bus_or_coach_passenger,2,Alighting,NA,bus_or_coach_passenger,character -Casualty,bus_or_coach_passenger,3,Standing passenger,NA,bus_or_coach_passenger,character -Casualty,bus_or_coach_passenger,4,Seated passenger,NA,bus_or_coach_passenger,character -Casualty,bus_or_coach_passenger,9,unknown (self reported),NA,bus_or_coach_passenger,character -Casualty,bus_or_coach_passenger,-1,Data missing or out of range,NA,bus_or_coach_passenger,character -Casualty,pedestrian_road_maintenance_worker,0,No / Not applicable,NA,pedestrian_road_maintenance_worker,character -Casualty,pedestrian_road_maintenance_worker,1,Yes,NA,pedestrian_road_maintenance_worker,character -Casualty,pedestrian_road_maintenance_worker,2,Not Known,NA,pedestrian_road_maintenance_worker,character -Casualty,pedestrian_road_maintenance_worker,3,Probable,2005 specification only,pedestrian_road_maintenance_worker,NA -Casualty,pedestrian_road_maintenance_worker,-1,Data missing or out of range,NA,pedestrian_road_maintenance_worker,character -Casualty,casualty_type,0,Pedestrian,NA,casualty_type,character -Casualty,casualty_type,1,Cyclist,NA,casualty_type,character -Casualty,casualty_type,2,Motorcycle 50cc and under rider or passenger,NA,casualty_type,character -Casualty,casualty_type,3,Motorcycle 125cc and under rider or passenger,introduced in 1999 specification,casualty_type,NA -Casualty,casualty_type,4,Motorcycle over 125cc and up to 500cc rider or passenger,introduced in 2005 specification,casualty_type,NA -Casualty,casualty_type,5,Motorcycle over 500cc rider or passenger,introduced in 2005 specification,casualty_type,NA -Casualty,casualty_type,8,Taxi/Private hire car occupant,introduced in 2005 specification,casualty_type,NA -Casualty,casualty_type,9,Car occupant,introduced in 2005 specification,casualty_type,NA -Casualty,casualty_type,10,Minibus (8 - 16 passenger seats) occupant,introduced in 1999 specification,casualty_type,NA -Casualty,casualty_type,11,Bus or coach occupant (17 or more pass seats),NA,casualty_type,character -Casualty,casualty_type,16,Horse rider,introduced in 1999 specification,casualty_type,NA -Casualty,casualty_type,17,Agricultural vehicle occupant,introduced in 1999 specification,casualty_type,NA -Casualty,casualty_type,18,Tram occupant,introduced in 1999 specification,casualty_type,NA -Casualty,casualty_type,19,Van / Goods vehicle (3.5 tonnes mgw or under) occupant,NA,casualty_type,character -Casualty,casualty_type,20,Goods vehicle (over 3.5t. and under 7.5t.) occupant,introduced in 1999 specification,casualty_type,NA -Casualty,casualty_type,21,Goods vehicle (7.5 tonnes mgw and over) occupant,introduced in 1999 specification,casualty_type,NA -Casualty,casualty_type,22,Mobility scooter rider,introduced in 2011 specification,casualty_type,NA -Casualty,casualty_type,23,Electric motorcycle rider or passenger,introduced in 2011 specification,casualty_type,NA -Casualty,casualty_type,90,Other vehicle occupant,introduced in 2011 specification,casualty_type,NA -Casualty,casualty_type,97,Motorcycle - unknown cc rider or passenger,introduced in 2011 specification,casualty_type,NA -Casualty,casualty_type,98,Goods vehicle (unknown weight) occupant,introduced in 2011 specification,casualty_type,NA -Casualty,casualty_type,99,Unknown vehicle type (self rep only),introduced in 2011 specification,casualty_type,NA -Casualty,casualty_type,103,Motorcycle - Scooter (1979-1998),dropped in 1999 specification,casualty_type,NA -Casualty,casualty_type,104,Motorcycle (1979-1998),dropped in 1999 specification,casualty_type,NA -Casualty,casualty_type,105,Motorcycle - Combination (1979-1998),dropped in 1999 specification,casualty_type,NA -Casualty,casualty_type,106,Motorcycle over 125cc (1999-2004),dropped in 2005 specification,casualty_type,NA -Casualty,casualty_type,108,Taxi (excluding private hire cars) (1979-2004),dropped in 2005 specification,casualty_type,NA -Casualty,casualty_type,109,Car (including private hire cars) (1979-2004),dropped in 2005 specification,casualty_type,NA -Casualty,casualty_type,110,Minibus/Motor caravan (1979-1998),dropped in 1999 specification,casualty_type,NA -Casualty,casualty_type,113,Goods over 3.5 tonnes (1979-1998),dropped in 1999 specification,casualty_type,NA -Casualty,casualty_imd_decile,1,Most deprived 10%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,2,More deprived 10-20%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,3,More deprived 20-30%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,4,More deprived 30-40%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,5,More deprived 40-50%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,6,Less deprived 40-50%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,7,Less deprived 30-40%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,8,Less deprived 20-30%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,9,Less deprived 10-20%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,10,Least deprived 10%,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_imd_decile,-1,Data missing or out of range,field introduced in 2016,casualty_imd_decile,character -Casualty,casualty_home_area_type,1,Urban area,field introduced in 1999,casualty_home_area_type,character -Casualty,casualty_home_area_type,2,Small town,field introduced in 1999,casualty_home_area_type,character -Casualty,casualty_home_area_type,3,Rural,field introduced in 1999,casualty_home_area_type,character -Casualty,casualty_home_area_type,-1,Data missing or out of range,field introduced in 1999,casualty_home_area_type,character +accident,police_force,1,Metropolitan Police,NA,police_force,character +accident,police_force,3,Cumbria,NA,police_force,character +accident,police_force,4,Lancashire,NA,police_force,character +accident,police_force,5,Merseyside,NA,police_force,character +accident,police_force,6,Greater Manchester,NA,police_force,character +accident,police_force,7,Cheshire,NA,police_force,character +accident,police_force,10,Northumbria,NA,police_force,character +accident,police_force,11,Durham,NA,police_force,character +accident,police_force,12,North Yorkshire,NA,police_force,character +accident,police_force,13,West Yorkshire,NA,police_force,character +accident,police_force,14,South Yorkshire,NA,police_force,character +accident,police_force,16,Humberside,NA,police_force,character +accident,police_force,17,Cleveland,NA,police_force,character +accident,police_force,20,West Midlands,NA,police_force,character +accident,police_force,21,Staffordshire,NA,police_force,character +accident,police_force,22,West Mercia,NA,police_force,character +accident,police_force,23,Warwickshire,NA,police_force,character +accident,police_force,30,Derbyshire,NA,police_force,character +accident,police_force,31,Nottinghamshire,NA,police_force,character +accident,police_force,32,Lincolnshire,NA,police_force,character +accident,police_force,33,Leicestershire,NA,police_force,character +accident,police_force,34,Northamptonshire,NA,police_force,character +accident,police_force,35,Cambridgeshire,NA,police_force,character +accident,police_force,36,Norfolk,NA,police_force,character +accident,police_force,37,Suffolk,NA,police_force,character +accident,police_force,40,Bedfordshire,NA,police_force,character +accident,police_force,41,Hertfordshire,NA,police_force,character +accident,police_force,42,Essex,NA,police_force,character +accident,police_force,43,Thames Valley,NA,police_force,character +accident,police_force,44,Hampshire,NA,police_force,character +accident,police_force,45,Surrey,NA,police_force,character +accident,police_force,46,Kent,NA,police_force,character +accident,police_force,47,Sussex,NA,police_force,character +accident,police_force,48,City of London,NA,police_force,character +accident,police_force,50,Devon and Cornwall,NA,police_force,character +accident,police_force,52,Avon and Somerset,NA,police_force,character +accident,police_force,53,Gloucestershire,NA,police_force,character +accident,police_force,54,Wiltshire,NA,police_force,character +accident,police_force,55,Dorset,NA,police_force,character +accident,police_force,60,North Wales,NA,police_force,character +accident,police_force,61,Gwent,NA,police_force,character +accident,police_force,62,South Wales,NA,police_force,character +accident,police_force,63,Dyfed-Powys,NA,police_force,character +accident,police_force,91,Northern,category discontinued in 2019,NA,NA +accident,police_force,92,Grampian,category discontinued in 2019,NA,NA +accident,police_force,93,Tayside,category discontinued in 2019,NA,NA +accident,police_force,94,Fife,category discontinued in 2019,NA,NA +accident,police_force,95,Lothian and Borders,category discontinued in 2019,NA,NA +accident,police_force,96,Central,category discontinued in 2019,NA,NA +accident,police_force,97,Strathclyde,category discontinued in 2019,NA,NA +accident,police_force,98,Dumfries and Galloway,category discontinued in 2019,NA,NA +accident,police_force,99,Police Scotland,category introduced in 2019,NA,NA +accident,legacy_collision_severity,1,Fatal,NA,legacy_collision_severity,character +accident,legacy_collision_severity,2,Serious,NA,legacy_collision_severity,character +accident,legacy_collision_severity,3,Slight,NA,legacy_collision_severity,character +accident,accident_severity,1,Fatal,NA,accident_severity,character +accident,accident_severity,2,Serious,NA,accident_severity,character +accident,accident_severity,3,Slight,NA,accident_severity,character +accident,enhanced_collision_severity,1,Fatal,category introduced where collected in 2023,enhanced_collision_severity,character +accident,enhanced_collision_severity,5,Very Serious,category introduced where collected in 2023,enhanced_collision_severity,character +accident,enhanced_collision_severity,6,Moderately Serious,category introduced where collected in 2023,enhanced_collision_severity,character +accident,enhanced_collision_severity,7,Less Serious,category introduced where collected in 2023,enhanced_collision_severity,character +accident,enhanced_collision_severity,3,Slight,category introduced where collected in 2023,enhanced_collision_severity,character +accident,enhanced_collision_severity,-1,Data missing or out of range,category introduced where collected in 2023,enhanced_collision_severity,character +accident,day_of_week,1,Sunday,NA,day_of_week,character +accident,day_of_week,2,Monday,NA,day_of_week,character +accident,day_of_week,3,Tuesday,NA,day_of_week,character +accident,day_of_week,4,Wednesday,NA,day_of_week,character +accident,day_of_week,5,Thursday,NA,day_of_week,character +accident,day_of_week,6,Friday,NA,day_of_week,character +accident,day_of_week,7,Saturday,NA,day_of_week,character +accident,local_authority_district,1,Westminster,NA,local_authority_district,character +accident,local_authority_district,2,Camden,NA,local_authority_district,character +accident,local_authority_district,3,Islington,NA,local_authority_district,character +accident,local_authority_district,4,Hackney,NA,local_authority_district,character +accident,local_authority_district,5,Tower Hamlets,NA,local_authority_district,character +accident,local_authority_district,6,Greenwich,NA,local_authority_district,character +accident,local_authority_district,7,Lewisham,NA,local_authority_district,character +accident,local_authority_district,8,Southwark,NA,local_authority_district,character +accident,local_authority_district,9,Lambeth,NA,local_authority_district,character +accident,local_authority_district,10,Wandsworth,NA,local_authority_district,character +accident,local_authority_district,11,Hammersmith and Fulham,NA,local_authority_district,character +accident,local_authority_district,12,Kensington and Chelsea,NA,local_authority_district,character +accident,local_authority_district,13,Waltham Forest,NA,local_authority_district,character +accident,local_authority_district,14,Redbridge,NA,local_authority_district,character +accident,local_authority_district,15,Havering,NA,local_authority_district,character +accident,local_authority_district,16,Barking and Dagenham,NA,local_authority_district,character +accident,local_authority_district,17,Newham,NA,local_authority_district,character +accident,local_authority_district,18,Bexley,NA,local_authority_district,character +accident,local_authority_district,19,Bromley,NA,local_authority_district,character +accident,local_authority_district,20,Croydon,NA,local_authority_district,character +accident,local_authority_district,21,Sutton,NA,local_authority_district,character +accident,local_authority_district,22,Merton,NA,local_authority_district,character +accident,local_authority_district,23,Kingston upon Thames,NA,local_authority_district,character +accident,local_authority_district,24,Richmond upon Thames,NA,local_authority_district,character +accident,local_authority_district,25,Hounslow,NA,local_authority_district,character +accident,local_authority_district,26,Hillingdon,NA,local_authority_district,character +accident,local_authority_district,27,Ealing,NA,local_authority_district,character +accident,local_authority_district,28,Brent,NA,local_authority_district,character +accident,local_authority_district,29,Harrow,NA,local_authority_district,character +accident,local_authority_district,30,Barnet,NA,local_authority_district,character +accident,local_authority_district,31,Haringey,NA,local_authority_district,character +accident,local_authority_district,32,Enfield,NA,local_authority_district,character +accident,local_authority_district,33,Hertsmere,NA,local_authority_district,character +accident,local_authority_district,38,Epsom and Ewell,NA,local_authority_district,character +accident,local_authority_district,40,Spelthorne,NA,local_authority_district,character +accident,local_authority_district,57,London Airport (Heathrow),NA,local_authority_district,character +accident,local_authority_district,60,Allerdale,NA,local_authority_district,character +accident,local_authority_district,61,Barrow-in-Furness,NA,local_authority_district,character +accident,local_authority_district,62,Carlisle,NA,local_authority_district,character +accident,local_authority_district,63,Copeland,NA,local_authority_district,character +accident,local_authority_district,64,Eden,NA,local_authority_district,character +accident,local_authority_district,65,South Lakeland,NA,local_authority_district,character +accident,local_authority_district,70,Blackburn with Darwen,NA,local_authority_district,character +accident,local_authority_district,71,Blackpool,NA,local_authority_district,character +accident,local_authority_district,72,Burnley,NA,local_authority_district,character +accident,local_authority_district,73,Chorley,NA,local_authority_district,character +accident,local_authority_district,74,Fylde,NA,local_authority_district,character +accident,local_authority_district,75,Hyndburn,NA,local_authority_district,character +accident,local_authority_district,76,Lancaster,NA,local_authority_district,character +accident,local_authority_district,77,Pendle,NA,local_authority_district,character +accident,local_authority_district,79,Preston,NA,local_authority_district,character +accident,local_authority_district,80,Ribble Valley,NA,local_authority_district,character +accident,local_authority_district,82,Rossendale,NA,local_authority_district,character +accident,local_authority_district,83,South Ribble,NA,local_authority_district,character +accident,local_authority_district,84,West Lancashire,NA,local_authority_district,character +accident,local_authority_district,85,Wyre,NA,local_authority_district,character +accident,local_authority_district,90,Knowsley,NA,local_authority_district,character +accident,local_authority_district,91,Liverpool,NA,local_authority_district,character +accident,local_authority_district,92,St. Helens,NA,local_authority_district,character +accident,local_authority_district,93,Sefton,NA,local_authority_district,character +accident,local_authority_district,95,Wirral,NA,local_authority_district,character +accident,local_authority_district,100,Bolton,NA,local_authority_district,character +accident,local_authority_district,101,Bury,NA,local_authority_district,character +accident,local_authority_district,102,Manchester,NA,local_authority_district,character +accident,local_authority_district,104,Oldham,NA,local_authority_district,character +accident,local_authority_district,106,Rochdale,NA,local_authority_district,character +accident,local_authority_district,107,Salford,NA,local_authority_district,character +accident,local_authority_district,109,Stockport,NA,local_authority_district,character +accident,local_authority_district,110,Tameside,NA,local_authority_district,character +accident,local_authority_district,112,Trafford,NA,local_authority_district,character +accident,local_authority_district,114,Wigan,NA,local_authority_district,character +accident,local_authority_district,120,Chester,NA,local_authority_district,character +accident,local_authority_district,121,Congleton,NA,local_authority_district,character +accident,local_authority_district,122,Crewe and Nantwich,NA,local_authority_district,character +accident,local_authority_district,123,Ellesmere Port and Neston,NA,local_authority_district,character +accident,local_authority_district,124,Halton,NA,local_authority_district,character +accident,local_authority_district,126,Macclesfield,NA,local_authority_district,character +accident,local_authority_district,127,Vale Royal,NA,local_authority_district,character +accident,local_authority_district,128,Warrington,NA,local_authority_district,character +accident,local_authority_district,129,Cheshire East,NA,local_authority_district,character +accident,local_authority_district,130,Cheshire West and Chester,NA,local_authority_district,character +accident,local_authority_district,139,Northumberland,NA,local_authority_district,character +accident,local_authority_district,140,Alnwick,NA,local_authority_district,character +accident,local_authority_district,141,Berwick-upon-Tweed,NA,local_authority_district,character +accident,local_authority_district,142,Blyth Valley,NA,local_authority_district,character +accident,local_authority_district,143,Castle Morpeth,NA,local_authority_district,character +accident,local_authority_district,143,Castle Morpeth,NA,local_authority_district,character +accident,local_authority_district,144,Tynedale,NA,local_authority_district,character +accident,local_authority_district,145,Wansbeck,NA,local_authority_district,character +accident,local_authority_district,146,Gateshead,NA,local_authority_district,character +accident,local_authority_district,147,Newcastle upon Tyne,NA,local_authority_district,character +accident,local_authority_district,148,North Tyneside,NA,local_authority_district,character +accident,local_authority_district,149,South Tyneside,NA,local_authority_district,character +accident,local_authority_district,150,Sunderland,NA,local_authority_district,character +accident,local_authority_district,160,Chester-le-Street,NA,local_authority_district,character +accident,local_authority_district,161,Darlington,NA,local_authority_district,character +accident,local_authority_district,162,Derwentside,NA,local_authority_district,character +accident,local_authority_district,163,Durham,NA,local_authority_district,character +accident,local_authority_district,164,Easington,NA,local_authority_district,character +accident,local_authority_district,165,Sedgefield,NA,local_authority_district,character +accident,local_authority_district,166,Teesdale,NA,local_authority_district,character +accident,local_authority_district,168,Wear Valley,NA,local_authority_district,character +accident,local_authority_district,169,County Durham,NA,local_authority_district,character +accident,local_authority_district,180,Craven,NA,local_authority_district,character +accident,local_authority_district,181,Hambleton,NA,local_authority_district,character +accident,local_authority_district,182,Harrogate,NA,local_authority_district,character +accident,local_authority_district,184,Richmondshire,NA,local_authority_district,character +accident,local_authority_district,185,Ryedale,NA,local_authority_district,character +accident,local_authority_district,186,Scarborough,NA,local_authority_district,character +accident,local_authority_district,187,Selby,NA,local_authority_district,character +accident,local_authority_district,189,York,NA,local_authority_district,character +accident,local_authority_district,200,Bradford,NA,local_authority_district,character +accident,local_authority_district,202,Calderdale,NA,local_authority_district,character +accident,local_authority_district,203,Kirklees,NA,local_authority_district,character +accident,local_authority_district,204,Leeds,NA,local_authority_district,character +accident,local_authority_district,206,Wakefield,NA,local_authority_district,character +accident,local_authority_district,210,Barnsley,NA,local_authority_district,character +accident,local_authority_district,211,Doncaster,NA,local_authority_district,character +accident,local_authority_district,213,Rotherham,NA,local_authority_district,character +accident,local_authority_district,215,Sheffield,NA,local_authority_district,character +accident,local_authority_district,220,Beverley,NA,local_authority_district,character +accident,local_authority_district,221,Boothferry,NA,local_authority_district,character +accident,local_authority_district,224,Cleethorpes,NA,local_authority_district,character +accident,local_authority_district,225,Glanford,NA,local_authority_district,character +accident,local_authority_district,226,Grimsby,NA,local_authority_district,character +accident,local_authority_district,227,Holderness,NA,local_authority_district,character +accident,local_authority_district,228,"Kingston upon Hull, City of",NA,local_authority_district,character +accident,local_authority_district,229,East Yorkshire,NA,local_authority_district,character +accident,local_authority_district,230,Scunthorpe,NA,local_authority_district,character +accident,local_authority_district,231,East Riding of Yorkshire,NA,local_authority_district,character +accident,local_authority_district,232,North Lincolnshire,NA,local_authority_district,character +accident,local_authority_district,233,North East Lincolnshire,NA,local_authority_district,character +accident,local_authority_district,240,Hartlepool,NA,local_authority_district,character +accident,local_authority_district,241,Redcar and Cleveland,NA,local_authority_district,character +accident,local_authority_district,243,Middlesbrough,NA,local_authority_district,character +accident,local_authority_district,245,Stockton-on-Tees,NA,local_authority_district,character +accident,local_authority_district,250,Cannock Chase,NA,local_authority_district,character +accident,local_authority_district,251,East Staffordshire,NA,local_authority_district,character +accident,local_authority_district,252,Lichfield,NA,local_authority_district,character +accident,local_authority_district,253,Newcastle-under-Lyme,NA,local_authority_district,character +accident,local_authority_district,254,South Staffordshire,NA,local_authority_district,character +accident,local_authority_district,255,Stafford,NA,local_authority_district,character +accident,local_authority_district,256,Staffordshire Moorlands,NA,local_authority_district,character +accident,local_authority_district,257,Stoke-on-Trent,NA,local_authority_district,character +accident,local_authority_district,258,Tamworth,NA,local_authority_district,character +accident,local_authority_district,270,Bromsgrove,NA,local_authority_district,character +accident,local_authority_district,271,Hereford,NA,local_authority_district,character +accident,local_authority_district,272,Leominster,NA,local_authority_district,character +accident,local_authority_district,273,Malvern Hills,NA,local_authority_district,character +accident,local_authority_district,274,Redditch,NA,local_authority_district,character +accident,local_authority_district,275,South Herefordshire,NA,local_authority_district,character +accident,local_authority_district,276,Worcester,NA,local_authority_district,character +accident,local_authority_district,277,Wychavon,NA,local_authority_district,character +accident,local_authority_district,278,Wyre Forest,NA,local_authority_district,character +accident,local_authority_district,279,Bridgnorth,NA,local_authority_district,character +accident,local_authority_district,280,North Shropshire,NA,local_authority_district,character +accident,local_authority_district,281,Oswestry,NA,local_authority_district,character +accident,local_authority_district,282,Shrewsbury and Atcham,NA,local_authority_district,character +accident,local_authority_district,283,South Shropshire,NA,local_authority_district,character +accident,local_authority_district,284,Telford and Wrekin,NA,local_authority_district,character +accident,local_authority_district,285,"Herefordshire, County of",NA,local_authority_district,character +accident,local_authority_district,286,Shropshire,NA,local_authority_district,character +accident,local_authority_district,290,North Warwickshire,NA,local_authority_district,character +accident,local_authority_district,291,Nuneaton and Bedworth,NA,local_authority_district,character +accident,local_authority_district,292,Rugby,NA,local_authority_district,character +accident,local_authority_district,293,Stratford-upon-Avon,NA,local_authority_district,character +accident,local_authority_district,294,Warwick,NA,local_authority_district,character +accident,local_authority_district,300,Birmingham,NA,local_authority_district,character +accident,local_authority_district,302,Coventry,NA,local_authority_district,character +accident,local_authority_district,303,Dudley,NA,local_authority_district,character +accident,local_authority_district,305,Sandwell,NA,local_authority_district,character +accident,local_authority_district,306,Solihull,NA,local_authority_district,character +accident,local_authority_district,307,Walsall,NA,local_authority_district,character +accident,local_authority_district,309,Wolverhampton,NA,local_authority_district,character +accident,local_authority_district,320,Amber Valley,NA,local_authority_district,character +accident,local_authority_district,321,Bolsover,NA,local_authority_district,character +accident,local_authority_district,322,Chesterfield,NA,local_authority_district,character +accident,local_authority_district,323,Derby,NA,local_authority_district,character +accident,local_authority_district,324,Erewash,NA,local_authority_district,character +accident,local_authority_district,325,High Peak,NA,local_authority_district,character +accident,local_authority_district,327,North East Derbyshire,NA,local_authority_district,character +accident,local_authority_district,328,South Derbyshire,NA,local_authority_district,character +accident,local_authority_district,329,Derbyshire Dales,NA,local_authority_district,character +accident,local_authority_district,340,Ashfield,NA,local_authority_district,character +accident,local_authority_district,341,Bassetlaw,NA,local_authority_district,character +accident,local_authority_district,342,Broxtowe,NA,local_authority_district,character +accident,local_authority_district,343,Gedling,NA,local_authority_district,character +accident,local_authority_district,344,Mansfield,NA,local_authority_district,character +accident,local_authority_district,345,Newark and Sherwood,NA,local_authority_district,character +accident,local_authority_district,346,Nottingham,NA,local_authority_district,character +accident,local_authority_district,347,Rushcliffe,NA,local_authority_district,character +accident,local_authority_district,350,Boston,NA,local_authority_district,character +accident,local_authority_district,351,East Lindsey,NA,local_authority_district,character +accident,local_authority_district,352,Lincoln,NA,local_authority_district,character +accident,local_authority_district,353,North Kesteven,NA,local_authority_district,character +accident,local_authority_district,354,South Holland,NA,local_authority_district,character +accident,local_authority_district,355,South Kesteven,NA,local_authority_district,character +accident,local_authority_district,356,West Lindsey,NA,local_authority_district,character +accident,local_authority_district,360,Blaby,NA,local_authority_district,character +accident,local_authority_district,361,Hinckley and Bosworth,NA,local_authority_district,character +accident,local_authority_district,362,Charnwood,NA,local_authority_district,character +accident,local_authority_district,363,Harborough,NA,local_authority_district,character +accident,local_authority_district,364,Leicester,NA,local_authority_district,character +accident,local_authority_district,365,Melton,NA,local_authority_district,character +accident,local_authority_district,366,North West Leicestershire,NA,local_authority_district,character +accident,local_authority_district,367,Oadby and Wigston,NA,local_authority_district,character +accident,local_authority_district,368,Rutland,NA,local_authority_district,character +accident,local_authority_district,380,Corby,NA,local_authority_district,character +accident,local_authority_district,381,Daventry,NA,local_authority_district,character +accident,local_authority_district,382,East Northamptonshire,NA,local_authority_district,character +accident,local_authority_district,383,Kettering,NA,local_authority_district,character +accident,local_authority_district,384,Northampton,NA,local_authority_district,character +accident,local_authority_district,385,South Northamptonshire,NA,local_authority_district,character +accident,local_authority_district,386,Wellingborough,NA,local_authority_district,character +accident,local_authority_district,390,Cambridge,NA,local_authority_district,character +accident,local_authority_district,391,East Cambridgeshire,NA,local_authority_district,character +accident,local_authority_district,392,Fenland,NA,local_authority_district,character +accident,local_authority_district,393,Huntingdonshire,NA,local_authority_district,character +accident,local_authority_district,394,Peterborough,NA,local_authority_district,character +accident,local_authority_district,395,South Cambridgeshire,NA,local_authority_district,character +accident,local_authority_district,400,Breckland,NA,local_authority_district,character +accident,local_authority_district,401,Broadland,NA,local_authority_district,character +accident,local_authority_district,402,Great Yarmouth,NA,local_authority_district,character +accident,local_authority_district,404,Norwich,NA,local_authority_district,character +accident,local_authority_district,405,North Norfolk,NA,local_authority_district,character +accident,local_authority_district,406,South Norfolk,NA,local_authority_district,character +accident,local_authority_district,407,King's Lynn and West Norfolk,NA,local_authority_district,character +accident,local_authority_district,410,Babergh,NA,local_authority_district,character +accident,local_authority_district,411,Forest Heath,NA,local_authority_district,character +accident,local_authority_district,412,Ipswich,NA,local_authority_district,character +accident,local_authority_district,413,Mid Suffolk,NA,local_authority_district,character +accident,local_authority_district,414,St. Edmundsbury,NA,local_authority_district,character +accident,local_authority_district,415,Suffolk Coastal,NA,local_authority_district,character +accident,local_authority_district,416,Waveney,NA,local_authority_district,character +accident,local_authority_district,420,Bedford,NA,local_authority_district,character +accident,local_authority_district,421,Luton,NA,local_authority_district,character +accident,local_authority_district,422,Mid Bedfordshire,NA,local_authority_district,character +accident,local_authority_district,423,South Bedfordshire,NA,local_authority_district,character +accident,local_authority_district,424,Central Bedfordshire,NA,local_authority_district,character +accident,local_authority_district,430,Broxbourne,NA,local_authority_district,character +accident,local_authority_district,431,Dacorum,NA,local_authority_district,character +accident,local_authority_district,432,East Hertfordshire,NA,local_authority_district,character +accident,local_authority_district,433,North Hertfordshire,NA,local_authority_district,character +accident,local_authority_district,434,St. Albans,NA,local_authority_district,character +accident,local_authority_district,435,Stevenage,NA,local_authority_district,character +accident,local_authority_district,436,Three Rivers,NA,local_authority_district,character +accident,local_authority_district,437,Watford,NA,local_authority_district,character +accident,local_authority_district,438,Welwyn Hatfield,NA,local_authority_district,character +accident,local_authority_district,450,Basildon,NA,local_authority_district,character +accident,local_authority_district,451,Braintree,NA,local_authority_district,character +accident,local_authority_district,452,Brentwood,NA,local_authority_district,character +accident,local_authority_district,453,Castle Point,NA,local_authority_district,character +accident,local_authority_district,454,Chelmsford,NA,local_authority_district,character +accident,local_authority_district,455,Colchester,NA,local_authority_district,character +accident,local_authority_district,456,Epping Forest,NA,local_authority_district,character +accident,local_authority_district,457,Harlow,NA,local_authority_district,character +accident,local_authority_district,458,Maldon,NA,local_authority_district,character +accident,local_authority_district,459,Rochford,NA,local_authority_district,character +accident,local_authority_district,460,Southend-on-Sea,NA,local_authority_district,character +accident,local_authority_district,461,Tendring,NA,local_authority_district,character +accident,local_authority_district,462,Thurrock,NA,local_authority_district,character +accident,local_authority_district,463,Uttlesford,NA,local_authority_district,character +accident,local_authority_district,470,Bracknell Forest,NA,local_authority_district,character +accident,local_authority_district,471,West Berkshire,NA,local_authority_district,character +accident,local_authority_district,472,Reading,NA,local_authority_district,character +accident,local_authority_district,473,Slough,NA,local_authority_district,character +accident,local_authority_district,474,Windsor and Maidenhead,NA,local_authority_district,character +accident,local_authority_district,475,Wokingham,NA,local_authority_district,character +accident,local_authority_district,476,Aylesbury Vale,NA,local_authority_district,character +accident,local_authority_district,477,South Bucks,NA,local_authority_district,character +accident,local_authority_district,478,Chiltern,NA,local_authority_district,character +accident,local_authority_district,479,Milton Keynes,NA,local_authority_district,character +accident,local_authority_district,480,Wycombe,NA,local_authority_district,character +accident,local_authority_district,481,Cherwell,NA,local_authority_district,character +accident,local_authority_district,482,Oxford,NA,local_authority_district,character +accident,local_authority_district,483,Vale of White Horse,NA,local_authority_district,character +accident,local_authority_district,484,South Oxfordshire,NA,local_authority_district,character +accident,local_authority_district,485,West Oxfordshire,NA,local_authority_district,character +accident,local_authority_district,490,Basingstoke and Deane,NA,local_authority_district,character +accident,local_authority_district,491,Eastleigh,NA,local_authority_district,character +accident,local_authority_district,492,Fareham,NA,local_authority_district,character +accident,local_authority_district,493,Gosport,NA,local_authority_district,character +accident,local_authority_district,494,Hart,NA,local_authority_district,character +accident,local_authority_district,495,Havant,NA,local_authority_district,character +accident,local_authority_district,496,New Forest,NA,local_authority_district,character +accident,local_authority_district,497,East Hampshire,NA,local_authority_district,character +accident,local_authority_district,498,Portsmouth,NA,local_authority_district,character +accident,local_authority_district,499,Rushmoor,NA,local_authority_district,character +accident,local_authority_district,500,Southampton,NA,local_authority_district,character +accident,local_authority_district,501,Test Valley,NA,local_authority_district,character +accident,local_authority_district,502,Winchester,NA,local_authority_district,character +accident,local_authority_district,503,Medina,NA,local_authority_district,character +accident,local_authority_district,504,South Wight,NA,local_authority_district,character +accident,local_authority_district,505,Isle of Wight,NA,local_authority_district,character +accident,local_authority_district,510,Elmbridge,NA,local_authority_district,character +accident,local_authority_district,511,Guildford,NA,local_authority_district,character +accident,local_authority_district,512,Mole Valley,NA,local_authority_district,character +accident,local_authority_district,513,Reigate and Banstead,NA,local_authority_district,character +accident,local_authority_district,514,Runnymede,NA,local_authority_district,character +accident,local_authority_district,515,Surrey Heath,NA,local_authority_district,character +accident,local_authority_district,516,Tandridge,NA,local_authority_district,character +accident,local_authority_district,517,Waverley,NA,local_authority_district,character +accident,local_authority_district,518,Woking,NA,local_authority_district,character +accident,local_authority_district,530,Ashford,NA,local_authority_district,character +accident,local_authority_district,531,Canterbury,NA,local_authority_district,character +accident,local_authority_district,532,Dartford,NA,local_authority_district,character +accident,local_authority_district,533,Dover,NA,local_authority_district,character +accident,local_authority_district,534,Gillingham,NA,local_authority_district,character +accident,local_authority_district,535,Gravesham,NA,local_authority_district,character +accident,local_authority_district,536,Maidstone,NA,local_authority_district,character +accident,local_authority_district,537,Rochester,NA,local_authority_district,character +accident,local_authority_district,538,Sevenoaks,NA,local_authority_district,character +accident,local_authority_district,539,Shepway,NA,local_authority_district,character +accident,local_authority_district,540,Swale,NA,local_authority_district,character +accident,local_authority_district,541,Thanet,NA,local_authority_district,character +accident,local_authority_district,542,Tonbridge and Malling,NA,local_authority_district,character +accident,local_authority_district,543,Tunbridge Wells,NA,local_authority_district,character +accident,local_authority_district,544,Medway,NA,local_authority_district,character +accident,local_authority_district,550,Brighton,NA,local_authority_district,character +accident,local_authority_district,551,Eastbourne,NA,local_authority_district,character +accident,local_authority_district,552,Hastings,NA,local_authority_district,character +accident,local_authority_district,553,Hove,NA,local_authority_district,character +accident,local_authority_district,554,Lewes,NA,local_authority_district,character +accident,local_authority_district,555,Rother,NA,local_authority_district,character +accident,local_authority_district,556,Wealden,NA,local_authority_district,character +accident,local_authority_district,557,Adur,NA,local_authority_district,character +accident,local_authority_district,558,Arun,NA,local_authority_district,character +accident,local_authority_district,559,Chichester,NA,local_authority_district,character +accident,local_authority_district,560,Crawley,NA,local_authority_district,character +accident,local_authority_district,562,Horsham,NA,local_authority_district,character +accident,local_authority_district,563,Mid Sussex,NA,local_authority_district,character +accident,local_authority_district,564,Worthing,NA,local_authority_district,character +accident,local_authority_district,565,Brighton and Hove,NA,local_authority_district,character +accident,local_authority_district,570,City of London,NA,local_authority_district,character +accident,local_authority_district,580,East Devon,NA,local_authority_district,character +accident,local_authority_district,581,Exeter,NA,local_authority_district,character +accident,local_authority_district,582,North Devon,NA,local_authority_district,character +accident,local_authority_district,583,Plymouth,NA,local_authority_district,character +accident,local_authority_district,584,South Hams,NA,local_authority_district,character +accident,local_authority_district,585,Teignbridge,NA,local_authority_district,character +accident,local_authority_district,586,Mid Devon,NA,local_authority_district,character +accident,local_authority_district,587,Torbay,NA,local_authority_district,character +accident,local_authority_district,588,Torridge,NA,local_authority_district,character +accident,local_authority_district,589,West Devon,NA,local_authority_district,character +accident,local_authority_district,590,Caradon,NA,local_authority_district,character +accident,local_authority_district,591,Carrick,NA,local_authority_district,character +accident,local_authority_district,592,Kerrier,NA,local_authority_district,character +accident,local_authority_district,593,North Cornwall,NA,local_authority_district,character +accident,local_authority_district,594,Penwith,NA,local_authority_district,character +accident,local_authority_district,595,Restormel,NA,local_authority_district,character +accident,local_authority_district,596,Cornwall,NA,local_authority_district,character +accident,local_authority_district,599,Isles of Scilly,NA,local_authority_district,character +accident,local_authority_district,600,Bath,NA,local_authority_district,character +accident,local_authority_district,601,"Bristol, City of",NA,local_authority_district,character +accident,local_authority_district,602,Kingswood,NA,local_authority_district,character +accident,local_authority_district,603,Northavon,NA,local_authority_district,character +accident,local_authority_district,604,Wansdyke,NA,local_authority_district,character +accident,local_authority_district,605,North Somerset,NA,local_authority_district,character +accident,local_authority_district,606,Mendip,NA,local_authority_district,character +accident,local_authority_district,607,Sedgemoor,NA,local_authority_district,character +accident,local_authority_district,608,Taunton Deane,NA,local_authority_district,character +accident,local_authority_district,609,West Somerset,NA,local_authority_district,character +accident,local_authority_district,610,South Somerset,NA,local_authority_district,character +accident,local_authority_district,611,Bath and North East Somerset,NA,local_authority_district,character +accident,local_authority_district,612,South Gloucestershire,NA,local_authority_district,character +accident,local_authority_district,620,Cheltenham,NA,local_authority_district,character +accident,local_authority_district,621,Cotswold,NA,local_authority_district,character +accident,local_authority_district,622,Forest of Dean,NA,local_authority_district,character +accident,local_authority_district,623,Gloucester,NA,local_authority_district,character +accident,local_authority_district,624,Stroud,NA,local_authority_district,character +accident,local_authority_district,625,Tewkesbury,NA,local_authority_district,character +accident,local_authority_district,630,Kennet,NA,local_authority_district,character +accident,local_authority_district,631,North Wiltshire,NA,local_authority_district,character +accident,local_authority_district,632,Salisbury,NA,local_authority_district,character +accident,local_authority_district,633,Swindon,NA,local_authority_district,character +accident,local_authority_district,634,West Wiltshire,NA,local_authority_district,character +accident,local_authority_district,635,Wiltshire,NA,local_authority_district,character +accident,local_authority_district,640,Bournemouth,NA,local_authority_district,character +accident,local_authority_district,641,Christchurch,NA,local_authority_district,character +accident,local_authority_district,642,North Dorset,NA,local_authority_district,character +accident,local_authority_district,643,Poole,NA,local_authority_district,character +accident,local_authority_district,644,Purbeck,NA,local_authority_district,character +accident,local_authority_district,645,West Dorset,NA,local_authority_district,character +accident,local_authority_district,646,Weymouth and Portland,NA,local_authority_district,character +accident,local_authority_district,647,East Dorset,NA,local_authority_district,character +accident,local_authority_district,660,Aberconwy,NA,local_authority_district,character +accident,local_authority_district,661,Arfon,NA,local_authority_district,character +accident,local_authority_district,662,Dwyfor,NA,local_authority_district,character +accident,local_authority_district,663,Meirionnydd,NA,local_authority_district,character +accident,local_authority_district,664,Ynys Mon - Isle of Anglesey,NA,local_authority_district,character +accident,local_authority_district,665,Alyn-Deeside,NA,local_authority_district,character +accident,local_authority_district,666,Colwyn,NA,local_authority_district,character +accident,local_authority_district,667,Delwyn,NA,local_authority_district,character +accident,local_authority_district,668,Glyndwr,NA,local_authority_district,character +accident,local_authority_district,669,Rhuddlan,NA,local_authority_district,character +accident,local_authority_district,670,Wrexham Maelor,NA,local_authority_district,character +accident,local_authority_district,680,Blaenau Gwent,NA,local_authority_district,character +accident,local_authority_district,682,Islwyn,NA,local_authority_district,character +accident,local_authority_district,683,Monmouth,NA,local_authority_district,character +accident,local_authority_district,684,Newport,NA,local_authority_district,character +accident,local_authority_district,685,Torfaen,NA,local_authority_district,character +accident,local_authority_district,690,Cynon Valley,NA,local_authority_district,character +accident,local_authority_district,692,Merthyr Tydfil,NA,local_authority_district,character +accident,local_authority_district,694,Ogwr,NA,local_authority_district,character +accident,local_authority_district,695,Rhondda,NA,local_authority_district,character +accident,local_authority_district,696,Rhymney Valley,NA,local_authority_district,character +accident,local_authority_district,698,Taff-Ely,NA,local_authority_district,character +accident,local_authority_district,699,Cardiff,NA,local_authority_district,character +accident,local_authority_district,701,Vale of Glamorgan,NA,local_authority_district,character +accident,local_authority_district,702,Afan,NA,local_authority_district,character +accident,local_authority_district,703,Lliw Valley,NA,local_authority_district,character +accident,local_authority_district,704,Neath,NA,local_authority_district,character +accident,local_authority_district,705,Swansea,NA,local_authority_district,character +accident,local_authority_district,710,Carmarthen,NA,local_authority_district,character +accident,local_authority_district,711,Ceredigion,NA,local_authority_district,character +accident,local_authority_district,712,Dinefwr,NA,local_authority_district,character +accident,local_authority_district,713,Llanelli,NA,local_authority_district,character +accident,local_authority_district,714,Preseli,NA,local_authority_district,character +accident,local_authority_district,715,South Pembrokeshire,NA,local_authority_district,character +accident,local_authority_district,716,Brecknock,NA,local_authority_district,character +accident,local_authority_district,717,Montgomery,NA,local_authority_district,character +accident,local_authority_district,718,Radnor,NA,local_authority_district,character +accident,local_authority_district,720,Isle of Anglesey,NA,local_authority_district,character +accident,local_authority_district,721,Conwy,NA,local_authority_district,character +accident,local_authority_district,722,Gwynedd,NA,local_authority_district,character +accident,local_authority_district,723,Denbighshire,NA,local_authority_district,character +accident,local_authority_district,724,Flintshire,NA,local_authority_district,character +accident,local_authority_district,725,Wrexham,NA,local_authority_district,character +accident,local_authority_district,730,Blaenau Gwent,NA,local_authority_district,character +accident,local_authority_district,731,Caerphilly,NA,local_authority_district,character +accident,local_authority_district,732,Monmouthshire,NA,local_authority_district,character +accident,local_authority_district,733,Newport,NA,local_authority_district,character +accident,local_authority_district,734,Torfaen,NA,local_authority_district,character +accident,local_authority_district,740,Bridgend,NA,local_authority_district,character +accident,local_authority_district,741,Cardiff,NA,local_authority_district,character +accident,local_authority_district,742,Merthyr Tydfil,NA,local_authority_district,character +accident,local_authority_district,743,Neath Port Talbot,NA,local_authority_district,character +accident,local_authority_district,744,"Rhondda, Cynon, Taff",NA,local_authority_district,character +accident,local_authority_district,745,Swansea,NA,local_authority_district,character +accident,local_authority_district,746,The Vale of Glamorgan,NA,local_authority_district,character +accident,local_authority_district,750,Ceredigion,NA,local_authority_district,character +accident,local_authority_district,751,Carmarthenshire,NA,local_authority_district,character +accident,local_authority_district,752,Pembrokeshire,NA,local_authority_district,character +accident,local_authority_district,753,Powys,NA,local_authority_district,character +accident,local_authority_district,801,Orkney,NA,local_authority_district,character +accident,local_authority_district,802,Shetland,NA,local_authority_district,character +accident,local_authority_district,803,Western Isles,NA,local_authority_district,character +accident,local_authority_district,804,Caithness,NA,local_authority_district,character +accident,local_authority_district,805,Sutherland,NA,local_authority_district,character +accident,local_authority_district,806,Ross and Cromarty,NA,local_authority_district,character +accident,local_authority_district,807,Skye and Lochalsh,NA,local_authority_district,character +accident,local_authority_district,808,Lochaber,NA,local_authority_district,character +accident,local_authority_district,809,Inverness,NA,local_authority_district,character +accident,local_authority_district,810,Badenoch and Strathspey,NA,local_authority_district,character +accident,local_authority_district,811,Nairn,NA,local_authority_district,character +accident,local_authority_district,812,Aberdeen (City of),NA,local_authority_district,character +accident,local_authority_district,813,Moray,NA,local_authority_district,character +accident,local_authority_district,814,Banff and Buchan,NA,local_authority_district,character +accident,local_authority_district,815,Gordon,NA,local_authority_district,character +accident,local_authority_district,816,Kincardine and Deeside,NA,local_authority_district,character +accident,local_authority_district,817,Dundee (City of),NA,local_authority_district,character +accident,local_authority_district,818,Angus,NA,local_authority_district,character +accident,local_authority_district,819,Perth and Kinross,NA,local_authority_district,character +accident,local_authority_district,821,Kirkcaldy,NA,local_authority_district,character +accident,local_authority_district,822,North East Fife,NA,local_authority_district,character +accident,local_authority_district,823,Dunfermline,NA,local_authority_district,character +accident,local_authority_district,824,Edinburgh (City of),NA,local_authority_district,character +accident,local_authority_district,825,West Lothian,NA,local_authority_district,character +accident,local_authority_district,826,Midlothian,NA,local_authority_district,character +accident,local_authority_district,827,East Lothian,NA,local_authority_district,character +accident,local_authority_district,828,Tweeddale,NA,local_authority_district,character +accident,local_authority_district,829,Ettrick and Lauderdale,NA,local_authority_district,character +accident,local_authority_district,830,Roxburgh,NA,local_authority_district,character +accident,local_authority_district,831,Berwickshire,NA,local_authority_district,character +accident,local_authority_district,833,Clackmannan,NA,local_authority_district,character +accident,local_authority_district,834,Stirling,NA,local_authority_district,character +accident,local_authority_district,835,Falkirk,NA,local_authority_district,character +accident,local_authority_district,836,Glasgow (City of),NA,local_authority_district,character +accident,local_authority_district,837,Argyll and Bute,NA,local_authority_district,character +accident,local_authority_district,838,Dumbarton,NA,local_authority_district,character +accident,local_authority_district,839,Clydebank,NA,local_authority_district,character +accident,local_authority_district,840,Bearsden and Milngavie,NA,local_authority_district,character +accident,local_authority_district,841,Strathkelvin,NA,local_authority_district,character +accident,local_authority_district,842,Cumbernauld and Kilsyth,NA,local_authority_district,character +accident,local_authority_district,843,Monklands,NA,local_authority_district,character +accident,local_authority_district,844,Motherwell,NA,local_authority_district,character +accident,local_authority_district,845,Hamilton,NA,local_authority_district,character +accident,local_authority_district,846,East Kilbride,NA,local_authority_district,character +accident,local_authority_district,847,Eastwood,NA,local_authority_district,character +accident,local_authority_district,848,Lanark,NA,local_authority_district,character +accident,local_authority_district,849,Renfrew,NA,local_authority_district,character +accident,local_authority_district,850,Inverclyde,NA,local_authority_district,character +accident,local_authority_district,851,Cunninghame,NA,local_authority_district,character +accident,local_authority_district,852,Kilmarnock and Loudoun,NA,local_authority_district,character +accident,local_authority_district,853,Kyle and Carrick,NA,local_authority_district,character +accident,local_authority_district,854,Cumnock and Doon Valley,NA,local_authority_district,character +accident,local_authority_district,856,Wigtown,NA,local_authority_district,character +accident,local_authority_district,857,Stewartry,NA,local_authority_district,character +accident,local_authority_district,858,Nithsdale,NA,local_authority_district,character +accident,local_authority_district,859,Annandale and Eskdale,NA,local_authority_district,character +accident,local_authority_district,910,Aberdeen City,NA,local_authority_district,character +accident,local_authority_district,911,Aberdeenshire,NA,local_authority_district,character +accident,local_authority_district,912,Angus,NA,local_authority_district,character +accident,local_authority_district,913,Argyll and Bute,NA,local_authority_district,character +accident,local_authority_district,914,Scottish Borders,NA,local_authority_district,character +accident,local_authority_district,915,Clackmannanshire,NA,local_authority_district,character +accident,local_authority_district,916,West Dunbartonshire,NA,local_authority_district,character +accident,local_authority_district,917,Dumfries and Galloway,NA,local_authority_district,character +accident,local_authority_district,918,Dundee City,NA,local_authority_district,character +accident,local_authority_district,919,East Ayrshire,NA,local_authority_district,character +accident,local_authority_district,920,East Dunbartonshire,NA,local_authority_district,character +accident,local_authority_district,921,East Lothian,NA,local_authority_district,character +accident,local_authority_district,922,East Renfrewshire,NA,local_authority_district,character +accident,local_authority_district,923,"Edinburgh, City of",NA,local_authority_district,character +accident,local_authority_district,924,Falkirk,NA,local_authority_district,character +accident,local_authority_district,925,Fife,NA,local_authority_district,character +accident,local_authority_district,926,Glasgow City,NA,local_authority_district,character +accident,local_authority_district,927,Highland,NA,local_authority_district,character +accident,local_authority_district,928,Inverclyde,NA,local_authority_district,character +accident,local_authority_district,929,Midlothian,NA,local_authority_district,character +accident,local_authority_district,930,Moray,NA,local_authority_district,character +accident,local_authority_district,931,North Ayrshire,NA,local_authority_district,character +accident,local_authority_district,932,North Lanarkshire,NA,local_authority_district,character +accident,local_authority_district,933,Orkney Islands,NA,local_authority_district,character +accident,local_authority_district,934,Perth and Kinross,NA,local_authority_district,character +accident,local_authority_district,935,Renfrewshire,NA,local_authority_district,character +accident,local_authority_district,936,Shetland Islands,NA,local_authority_district,character +accident,local_authority_district,937,South Ayrshire,NA,local_authority_district,character +accident,local_authority_district,938,South Lanarkshire,NA,local_authority_district,character +accident,local_authority_district,939,Stirling,NA,local_authority_district,character +accident,local_authority_district,940,West Lothian,NA,local_authority_district,character +accident,local_authority_district,941,Western Isles,NA,local_authority_district,character +accident,local_authority_district,-1,Code deprecated,NA,local_authority_district,character +accident,local_authority_ons_district,-1,Record predates use of local_authority_ons_district,NA,local_authority_ons_district,character +accident,local_authority_highway,-1,Record predates use of local_authority_highway codes,NA,local_authority_highway,character +accident,first_road_class,1,Motorway,NA,first_road_class,character +accident,first_road_class,2,A(M),NA,first_road_class,character +accident,first_road_class,3,A,NA,first_road_class,character +accident,first_road_class,4,B,NA,first_road_class,character +accident,first_road_class,5,C,NA,first_road_class,character +accident,first_road_class,6,Unclassified,NA,first_road_class,character +accident,first_road_class,-1,Data missing or out of range,NA,first_road_class,character +accident,first_road_number,-1,Unknown,NA,first_road_number,character +accident,first_road_number,0,first_road_class is C or Unclassified. These roads do not have official numbers so recorded as zero,NA,first_road_number,character +accident,road_type,1,Roundabout,NA,road_type,character +accident,road_type,2,One way street,NA,road_type,character +accident,road_type,3,Dual carriageway,NA,road_type,character +accident,road_type,6,Single carriageway,NA,road_type,character +accident,road_type,7,Slip road,NA,road_type,character +accident,road_type,9,Unknown,NA,road_type,character +accident,road_type,12,One way street/Slip road,NA,road_type,character +accident,road_type,-1,Data missing or out of range,NA,road_type,character +accident,speed_limit,-1,Data missing or out of range,NA,NA,NA +accident,speed_limit,99,unknown (self reported),NA,NA,NA +accident,junction_detail,0,Not at junction or within 20 metres,NA,junction_detail,character +accident,junction_detail,1,Roundabout,NA,junction_detail,character +accident,junction_detail,2,Mini-roundabout,NA,junction_detail,character +accident,junction_detail,3,T or staggered junction,NA,junction_detail,character +accident,junction_detail,5,Slip road,NA,junction_detail,character +accident,junction_detail,6,Crossroads,NA,junction_detail,character +accident,junction_detail,7,More than 4 arms (not roundabout),NA,junction_detail,character +accident,junction_detail,8,Private drive or entrance,NA,junction_detail,character +accident,junction_detail,9,Other junction,NA,junction_detail,character +accident,junction_detail,99,unknown (self reported),NA,junction_detail,character +accident,junction_detail,-1,Data missing or out of range,NA,junction_detail,character +accident,junction_control,0,Not at junction or within 20 metres,NA,junction_control,character +accident,junction_control,1,Authorised person,NA,junction_control,character +accident,junction_control,2,Auto traffic signal,NA,junction_control,character +accident,junction_control,3,Stop sign,NA,junction_control,character +accident,junction_control,4,Give way or uncontrolled,NA,junction_control,character +accident,junction_control,-1,Data missing or out of range,NA,junction_control,character +accident,junction_control,9,unknown (self reported),NA,junction_control,character +accident,second_road_class,0,Not at junction or within 20 metres,NA,second_road_class,character +accident,second_road_class,1,Motorway,NA,second_road_class,character +accident,second_road_class,2,A(M),NA,second_road_class,character +accident,second_road_class,3,A,NA,second_road_class,character +accident,second_road_class,4,B,NA,second_road_class,character +accident,second_road_class,5,C,NA,second_road_class,character +accident,second_road_class,6,Unclassified,NA,second_road_class,character +accident,second_road_class,9,Unknown (self rep only),NA,second_road_class,character +accident,second_road_class,-1,Data missing or out of range,NA,second_road_class,character +accident,second_road_number,-1,Unknown,NA,second_road_number,character +accident,second_road_number,0,first_road_class is C or Unclassified. These roads do not have official numbers so recorded as zero,NA,second_road_number,character +accident,pedestrian_crossing_human_control,0,None within 50 metres,NA,pedestrian_crossing_human_control,character +accident,pedestrian_crossing_human_control,1,Control by school crossing patrol,NA,pedestrian_crossing_human_control,character +accident,pedestrian_crossing_human_control,2,Control by other authorised person,NA,pedestrian_crossing_human_control,character +accident,pedestrian_crossing_human_control,-1,Data missing or out of range,NA,pedestrian_crossing_human_control,character +accident,pedestrian_crossing_human_control,9,unknown (self reported),NA,pedestrian_crossing_human_control,character +accident,pedestrian_crossing_physical_facilities,0,No physical crossing facilities within 50 metres,NA,pedestrian_crossing_physical_facilities,character +accident,pedestrian_crossing_physical_facilities,1,Zebra,NA,pedestrian_crossing_physical_facilities,character +accident,pedestrian_crossing_physical_facilities,4,"Pelican, puffin, toucan or similar non-junction pedestrian light crossing",NA,pedestrian_crossing_physical_facilities,character +accident,pedestrian_crossing_physical_facilities,5,Pedestrian phase at traffic signal junction,NA,pedestrian_crossing_physical_facilities,character +accident,pedestrian_crossing_physical_facilities,7,Footbridge or subway,NA,pedestrian_crossing_physical_facilities,character +accident,pedestrian_crossing_physical_facilities,8,Central refuge,NA,pedestrian_crossing_physical_facilities,character +accident,pedestrian_crossing_physical_facilities,-1,Data missing or out of range,NA,pedestrian_crossing_physical_facilities,character +accident,pedestrian_crossing_physical_facilities,9,unknown (self reported),NA,pedestrian_crossing_physical_facilities,character +accident,light_conditions,1,Daylight,NA,light_conditions,character +accident,light_conditions,4,Darkness - lights lit,NA,light_conditions,character +accident,light_conditions,5,Darkness - lights unlit,NA,light_conditions,character +accident,light_conditions,6,Darkness - no lighting,NA,light_conditions,character +accident,light_conditions,7,Darkness - lighting unknown,NA,light_conditions,character +accident,light_conditions,-1,Data missing or out of range,NA,light_conditions,character +accident,weather_conditions,1,Fine no high winds,NA,weather_conditions,character +accident,weather_conditions,2,Raining no high winds,NA,weather_conditions,character +accident,weather_conditions,3,Snowing no high winds,NA,weather_conditions,character +accident,weather_conditions,4,Fine + high winds,NA,weather_conditions,character +accident,weather_conditions,5,Raining + high winds,NA,weather_conditions,character +accident,weather_conditions,6,Snowing + high winds,NA,weather_conditions,character +accident,weather_conditions,7,Fog or mist,NA,weather_conditions,character +accident,weather_conditions,8,Other,NA,weather_conditions,character +accident,weather_conditions,9,Unknown,NA,weather_conditions,character +accident,weather_conditions,-1,Data missing or out of range,NA,weather_conditions,character +accident,road_surface_conditions,1,Dry,NA,road_surface_conditions,character +accident,road_surface_conditions,2,Wet or damp,NA,road_surface_conditions,character +accident,road_surface_conditions,3,Snow,NA,road_surface_conditions,character +accident,road_surface_conditions,4,Frost or ice,NA,road_surface_conditions,character +accident,road_surface_conditions,5,Flood over 3cm. deep,NA,road_surface_conditions,character +accident,road_surface_conditions,6,Oil or diesel,NA,road_surface_conditions,character +accident,road_surface_conditions,7,Mud,NA,road_surface_conditions,character +accident,road_surface_conditions,-1,Data missing or out of range,NA,road_surface_conditions,character +accident,road_surface_conditions,9,unknown (self reported),NA,road_surface_conditions,character +accident,special_conditions_at_site,0,None,NA,special_conditions_at_site,character +accident,special_conditions_at_site,1,Auto traffic signal - out,NA,special_conditions_at_site,character +accident,special_conditions_at_site,2,Auto signal part defective,NA,special_conditions_at_site,character +accident,special_conditions_at_site,3,Road sign or marking defective or obscured,NA,special_conditions_at_site,character +accident,special_conditions_at_site,4,Roadworks,NA,special_conditions_at_site,character +accident,special_conditions_at_site,5,Road surface defective,NA,special_conditions_at_site,character +accident,special_conditions_at_site,6,Oil or diesel,NA,special_conditions_at_site,character +accident,special_conditions_at_site,7,Mud,NA,special_conditions_at_site,character +accident,special_conditions_at_site,-1,Data missing or out of range,NA,special_conditions_at_site,character +accident,special_conditions_at_site,9,unknown (self reported),NA,special_conditions_at_site,character +accident,carriageway_hazards,0,None,NA,carriageway_hazards,character +accident,carriageway_hazards,1,Vehicle load on road,NA,carriageway_hazards,character +accident,carriageway_hazards,2,Other object on road,NA,carriageway_hazards,character +accident,carriageway_hazards,3,Previous accident,NA,carriageway_hazards,character +accident,carriageway_hazards,4,Dog on road,NA,carriageway_hazards,character +accident,carriageway_hazards,5,Other animal on road,NA,carriageway_hazards,character +accident,carriageway_hazards,6,Pedestrian in carriageway - not injured,NA,carriageway_hazards,character +accident,carriageway_hazards,7,Any animal in carriageway (except ridden horse),NA,carriageway_hazards,character +accident,carriageway_hazards,-1,Data missing or out of range,NA,carriageway_hazards,character +accident,carriageway_hazards,9,unknown (self reported),NA,carriageway_hazards,character +accident,urban_or_rural_area,1,Urban,field introduced in 1994,urban_or_rural_area,character +accident,urban_or_rural_area,2,Rural,field introduced in 1994,urban_or_rural_area,character +accident,urban_or_rural_area,3,Unallocated,field introduced in 1994,urban_or_rural_area,character +accident,urban_or_rural_area,-1,Data missing or out of range,field introduced in 1994,urban_or_rural_area,character +accident,did_police_officer_attend_scene_of_collision,1,Yes,NA,did_police_officer_attend_scene_of_collision,character +accident,did_police_officer_attend_scene_of_collision,2,No,NA,did_police_officer_attend_scene_of_collision,character +accident,did_police_officer_attend_scene_of_collision,3,No - accident was reported using a self completion form (self rep only),NA,did_police_officer_attend_scene_of_collision,character +accident,did_police_officer_attend_scene_of_collision,-1,Data missing or out of range,NA,did_police_officer_attend_scene_of_collision,character +accident,did_police_officer_attend_scene_of_accident,1,Yes,NA,did_police_officer_attend_scene_of_accident,character +accident,did_police_officer_attend_scene_of_accident,2,No,NA,did_police_officer_attend_scene_of_accident,character +accident,did_police_officer_attend_scene_of_accident,3,No - accident was reported using a self completion form (self rep only),NA,did_police_officer_attend_scene_of_accident,character +accident,did_police_officer_attend_scene_of_accident,-1,Data missing or out of range,NA,did_police_officer_attend_scene_of_accident,character +accident,trunk_road_flag,1,Trunk (Roads managed by Highways England),NA,trunk_road_flag,character +accident,trunk_road_flag,2,Non-trunk,NA,trunk_road_flag,character +accident,trunk_road_flag,-1,Data missing or out of range,NA,trunk_road_flag,character +vehicle,vehicle_type,1,Pedal cycle,NA,vehicle_type,character +vehicle,vehicle_type,1,Pedal cycle,NA,vehicle_type,character +vehicle,vehicle_type,2,Motorcycle 50cc and under,NA,vehicle_type,character +vehicle,vehicle_type,2,Motorcycle 50cc and under,NA,vehicle_type,character +vehicle,vehicle_type,3,Motorcycle 125cc and under,category introduced in 1999 specification,NA,NA +vehicle,vehicle_type,4,Motorcycle over 125cc and up to 500cc,category introduced in 2005 specification,NA,NA +vehicle,vehicle_type,5,Motorcycle over 500cc,category introduced in 2005 specification,NA,NA +vehicle,vehicle_type,8,Taxi/Private hire car,category introduced in 2005 specification,NA,NA +vehicle,vehicle_type,9,Car,category introduced in 2005 specification,NA,NA +vehicle,vehicle_type,10,Minibus (8 - 16 passenger seats),category introduced in 1999 specification,NA,NA +vehicle,vehicle_type,11,Bus or coach (17 or more pass seats),NA,vehicle_type,character +vehicle,vehicle_type,11,Bus or coach (17 or more pass seats),NA,vehicle_type,character +vehicle,vehicle_type,16,Ridden horse,category introduced in 1999 specification,NA,NA +vehicle,vehicle_type,17,Agricultural vehicle,category introduced in 1999 specification,NA,NA +vehicle,vehicle_type,18,Tram,category introduced in 1999 specification,NA,NA +vehicle,vehicle_type,19,Van / Goods 3.5 tonnes mgw or under,NA,vehicle_type,character +vehicle,vehicle_type,19,Van / Goods 3.5 tonnes mgw or under,NA,vehicle_type,character +vehicle,vehicle_type,20,Goods over 3.5t. and under 7.5t,category introduced in 1999 specification,NA,NA +vehicle,vehicle_type,21,Goods 7.5 tonnes mgw and over,category introduced in 1999 specification,NA,NA +vehicle,vehicle_type,22,Mobility scooter,cateogry introduced in 2011 specification,NA,NA +vehicle,vehicle_type,23,Electric motorcycle,cateogry introduced in 2011 specification,NA,NA +vehicle,vehicle_type,90,Other vehicle,cateogry introduced in 2011 specification,NA,NA +vehicle,vehicle_type,97,Motorcycle - unknown cc,cateogry introduced in 2011 specification,NA,NA +vehicle,vehicle_type,98,Goods vehicle - unknown weight,cateogry introduced in 2011 specification,NA,NA +vehicle,vehicle_type,99,Unknown vehicle type (self rep only),cateogry introduced in 2011 specification,NA,NA +vehicle,vehicle_type,103,Motorcycle - Scooter (1979-1998),cateogory discontinued in 1999 specification,NA,NA +vehicle,vehicle_type,104,Motorcycle (1979-1998),cateogory discontinued in 1999 specification,NA,NA +vehicle,vehicle_type,105,Motorcycle - Combination (1979-1998),cateogory discontinued in 1999 specification,NA,NA +vehicle,vehicle_type,106,Motorcycle over 125cc (1999-2004),cateogory discontinued in 2005 specification,NA,NA +vehicle,vehicle_type,108,Taxi (excluding private hire cars) (1979-2004),cateogory discontinued in 2005 specification,NA,NA +vehicle,vehicle_type,109,Car (including private hire cars) (1979-2004),cateogory discontinued in 2005 specification,NA,NA +vehicle,vehicle_type,110,Minibus/Motor caravan (1979-1998),cateogory discontinued in 1999 specification,NA,NA +vehicle,vehicle_type,113,Goods over 3.5 tonnes (1979-1998),cateogory discontinued in 1999 specification,NA,NA +vehicle,vehicle_type,-1,Data missing or out of range,NA,vehicle_type,character +vehicle,vehicle_type,-1,Data missing or out of range,NA,vehicle_type,character +vehicle,towing_and_articulation,0,No tow/articulation,NA,towing_and_articulation,character +vehicle,towing_and_articulation,1,Articulated vehicle,NA,towing_and_articulation,character +vehicle,towing_and_articulation,2,Double or multiple trailer,NA,towing_and_articulation,character +vehicle,towing_and_articulation,3,Caravan,NA,towing_and_articulation,character +vehicle,towing_and_articulation,4,Single trailer,NA,towing_and_articulation,character +vehicle,towing_and_articulation,5,Other tow,NA,towing_and_articulation,character +vehicle,towing_and_articulation,9,unknown (self reported),NA,towing_and_articulation,character +vehicle,towing_and_articulation,-1,Data missing or out of range,NA,towing_and_articulation,character +vehicle,vehicle_manoeuvre,1,Reversing,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,2,Parked,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,3,Waiting to go - held up,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,4,Slowing or stopping,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,5,Moving off,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,6,U-turn,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,7,Turning left,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,8,Waiting to turn left,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,9,Turning right,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,10,Waiting to turn right,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,11,Changing lane to left,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,12,Changing lane to right,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,13,Overtaking moving vehicle - offside,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,14,Overtaking static vehicle - offside,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,15,Overtaking - nearside,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,16,Going ahead left-hand bend,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,17,Going ahead right-hand bend,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,18,Going ahead other,NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,99,unknown (self reported),NA,vehicle_manoeuvre,character +vehicle,vehicle_manoeuvre,-1,Data missing or out of range,NA,vehicle_manoeuvre,character +vehicle,vehicle_direction_from,0,Parked,both vehicle_direction_from and vehicle_direction_to should be 0,vehicle_direction_from,character +vehicle,vehicle_direction_from,1,North,NA,NA,NA +vehicle,vehicle_direction_from,2,North East,NA,NA,NA +vehicle,vehicle_direction_from,3,East,NA,NA,NA +vehicle,vehicle_direction_from,4,South East,NA,NA,NA +vehicle,vehicle_direction_from,5,South,NA,NA,NA +vehicle,vehicle_direction_from,6,South West,NA,NA,NA +vehicle,vehicle_direction_from,7,West,NA,NA,NA +vehicle,vehicle_direction_from,8,North West,NA,NA,NA +vehicle,vehicle_direction_from,9,unknown (self reported),both vehicle_direction_from and vehicle_direction_to should be 9,NA,NA +vehicle,vehicle_direction_from,-1,Data missing or out of range,NA,NA,NA +vehicle,vehicle_direction_to,0,Parked,both vehicle_direction_from and vehicle_direction_to should be 0,vehicle_direction_to,character +vehicle,vehicle_direction_to,1,North,NA,NA,NA +vehicle,vehicle_direction_to,2,North East,NA,NA,NA +vehicle,vehicle_direction_to,3,East,NA,NA,NA +vehicle,vehicle_direction_to,4,South East,NA,NA,NA +vehicle,vehicle_direction_to,5,South,NA,NA,NA +vehicle,vehicle_direction_to,6,South West,NA,NA,NA +vehicle,vehicle_direction_to,7,West,NA,NA,NA +vehicle,vehicle_direction_to,8,North West,NA,NA,NA +vehicle,vehicle_direction_to,9,unknown (self reported),both vehicle_direction_from and vehicle_direction_to should be 9,NA,NA +vehicle,vehicle_direction_to,-1,Data missing or out of range,NA,NA,NA +vehicle,vehicle_location_restricted_lane,0,On main c'way - not in restricted lane,NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,1,Tram/Light rail track,NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,2,Bus lane,NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,3,Busway (including guided busway),NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,4,Cycle lane (on main carriageway),NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,5,Cycleway or shared use footway (not part of main carriageway),NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,6,On lay-by or hard shoulder,NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,7,Entering lay-by or hard shoulder,NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,8,Leaving lay-by or hard shoulder,NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,9,Footway (pavement),NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,10,Not on carriageway,NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,99,unknown (self reported),NA,vehicle_location_restricted_lane,character +vehicle,vehicle_location_restricted_lane,-1,Data missing or out of range,NA,vehicle_location_restricted_lane,character +vehicle,junction_location,0,Not at or within 20 metres of junction,NA,junction_location,character +vehicle,junction_location,1,Approaching junction or waiting/parked at junction approach,NA,junction_location,character +vehicle,junction_location,2,Cleared junction or waiting/parked at junction exit,NA,junction_location,character +vehicle,junction_location,3,Leaving roundabout,NA,junction_location,character +vehicle,junction_location,4,Entering roundabout,NA,junction_location,character +vehicle,junction_location,5,Leaving main road,NA,junction_location,character +vehicle,junction_location,6,Entering main road,NA,junction_location,character +vehicle,junction_location,7,Entering from slip road,NA,junction_location,character +vehicle,junction_location,8,Mid Junction - on roundabout or on main road,NA,junction_location,character +vehicle,junction_location,9,unknown (self reported),NA,junction_location,character +vehicle,junction_location,-1,Data missing or out of range,NA,junction_location,character +vehicle,skidding_and_overturning,0,None,NA,skidding_and_overturning,character +vehicle,skidding_and_overturning,1,Skidded,NA,skidding_and_overturning,character +vehicle,skidding_and_overturning,2,Skidded and overturned,NA,skidding_and_overturning,character +vehicle,skidding_and_overturning,3,Jackknifed,NA,skidding_and_overturning,character +vehicle,skidding_and_overturning,4,Jackknifed and overturned,NA,skidding_and_overturning,character +vehicle,skidding_and_overturning,5,Overturned,NA,skidding_and_overturning,character +vehicle,skidding_and_overturning,9,unknown (self reported),NA,skidding_and_overturning,character +vehicle,skidding_and_overturning,-1,Data missing or out of range,NA,skidding_and_overturning,character +vehicle,hit_object_in_carriageway,0,None,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,1,Previous accident,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,2,Road works,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,4,Parked vehicle,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,5,Bridge (roof),NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,6,Bridge (side),NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,7,Bollard or refuge,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,8,Open door of vehicle,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,9,Central island of roundabout,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,10,Kerb,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,11,Other object,NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,12,Any animal (except ridden horse),NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,99,unknown (self reported),NA,hit_object_in_carriageway,character +vehicle,hit_object_in_carriageway,-1,Data missing or out of range,NA,hit_object_in_carriageway,character +vehicle,vehicle_leaving_carriageway,0,Did not leave carriageway,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,1,Nearside,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,2,Nearside and rebounded,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,3,Straight ahead at junction,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,4,Offside on to central reservation,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,5,Offside on to centrl res + rebounded,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,6,Offside - crossed central reservation,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,7,Offside,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,8,Offside and rebounded,NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,9,unknown (self reported),NA,vehicle_leaving_carriageway,character +vehicle,vehicle_leaving_carriageway,-1,Data missing or out of range,NA,vehicle_leaving_carriageway,character +vehicle,hit_object_off_carriageway,0,None,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,1,Road sign or traffic signal,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,2,Lamp post,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,3,Telegraph or electricity pole,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,4,Tree,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,5,Bus stop or bus shelter,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,6,Central crash barrier,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,7,Near/Offside crash barrier,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,8,Submerged in water,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,9,Entered ditch,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,10,Other permanent object,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,11,Wall or fence,NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,99,unknown (self reported),NA,hit_object_off_carriageway,character +vehicle,hit_object_off_carriageway,-1,Data missing or out of range,NA,hit_object_off_carriageway,character +vehicle,first_point_of_impact,0,Did not impact,NA,first_point_of_impact,character +vehicle,first_point_of_impact,1,Front,NA,first_point_of_impact,character +vehicle,first_point_of_impact,2,Back,NA,first_point_of_impact,character +vehicle,first_point_of_impact,3,Offside,NA,first_point_of_impact,character +vehicle,first_point_of_impact,4,Nearside,NA,first_point_of_impact,character +vehicle,first_point_of_impact,9,unknown (self reported),NA,first_point_of_impact,character +vehicle,first_point_of_impact,-1,Data missing or out of range,NA,first_point_of_impact,character +vehicle,vehicle_left_hand_drive,1,No,NA,vehicle_left_hand_drive,character +vehicle,vehicle_left_hand_drive,2,Yes,NA,vehicle_left_hand_drive,character +vehicle,vehicle_left_hand_drive,9,Unknown,NA,vehicle_left_hand_drive,character +vehicle,vehicle_left_hand_drive,-1,Data missing or out of range,NA,vehicle_left_hand_drive,character +vehicle,journey_purpose_of_driver,1,Journey as part of work,NA,journey_purpose_of_driver,character +vehicle,journey_purpose_of_driver,2,Commuting to/from work,NA,journey_purpose_of_driver,character +vehicle,journey_purpose_of_driver,3,Taking pupil to/from school,NA,journey_purpose_of_driver,character +vehicle,journey_purpose_of_driver,4,Pupil riding to/from school,NA,journey_purpose_of_driver,character +vehicle,journey_purpose_of_driver,5,Other,NA,journey_purpose_of_driver,character +vehicle,journey_purpose_of_driver,6,Not known,NA,journey_purpose_of_driver,character +vehicle,journey_purpose_of_driver,15,Other/Not known,2005 specification only,NA,NA +vehicle,journey_purpose_of_driver,-1,Data missing or out of range,NA,journey_purpose_of_driver,character +vehicle,sex_of_driver,1,Male,NA,sex_of_driver,character +vehicle,sex_of_driver,2,Female,NA,sex_of_driver,character +vehicle,sex_of_driver,3,Not known,NA,sex_of_driver,character +vehicle,sex_of_driver,-1,Data missing or out of range,NA,sex_of_driver,character +vehicle,age_of_driver,-1,Data missing or out of range,NA,age_of_driver,numeric +vehicle,age_band_of_driver,1,0 - 5,NA,age_band_of_driver,character +vehicle,age_band_of_driver,2,6 - 10,NA,age_band_of_driver,character +vehicle,age_band_of_driver,3,11 - 15,NA,age_band_of_driver,character +vehicle,age_band_of_driver,4,16 - 20,NA,age_band_of_driver,character +vehicle,age_band_of_driver,5,21 - 25,NA,age_band_of_driver,character +vehicle,age_band_of_driver,6,26 - 35,NA,age_band_of_driver,character +vehicle,age_band_of_driver,7,36 - 45,NA,age_band_of_driver,character +vehicle,age_band_of_driver,8,46 - 55,NA,age_band_of_driver,character +vehicle,age_band_of_driver,9,56 - 65,NA,age_band_of_driver,character +vehicle,age_band_of_driver,10,66 - 75,NA,age_band_of_driver,character +vehicle,age_band_of_driver,11,Over 75,NA,age_band_of_driver,character +vehicle,age_band_of_driver,-1,Data missing or out of range,NA,age_band_of_driver,character +vehicle,engine_capacity_cc,-1,Data missing or out of range,NA,engine_capacity_cc,numeric +vehicle,propulsion_code,1,Petrol,NA,propulsion_code,character +vehicle,propulsion_code,2,Heavy oil,NA,propulsion_code,character +vehicle,propulsion_code,3,Electric,NA,propulsion_code,character +vehicle,propulsion_code,4,Steam,NA,propulsion_code,character +vehicle,propulsion_code,5,Gas,NA,propulsion_code,character +vehicle,propulsion_code,6,Petrol/Gas (LPG),NA,propulsion_code,character +vehicle,propulsion_code,7,Gas/Bi-fuel,NA,propulsion_code,character +vehicle,propulsion_code,8,Hybrid electric,NA,propulsion_code,character +vehicle,propulsion_code,9,Gas Diesel,NA,propulsion_code,character +vehicle,propulsion_code,10,New fuel technology,NA,propulsion_code,character +vehicle,propulsion_code,11,Fuel cells,NA,propulsion_code,character +vehicle,propulsion_code,12,Electric diesel,NA,propulsion_code,character +vehicle,propulsion_code,-1,Undefined,NA,propulsion_code,character +vehicle,generic_make_model,-1,Data missing or out of range,field introduced in 2020,generic_make_model,character +vehicle,driver_imd_decile,1,Most deprived 10%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,2,More deprived 10-20%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,3,More deprived 20-30%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,4,More deprived 30-40%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,5,More deprived 40-50%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,6,Less deprived 40-50%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,7,Less deprived 30-40%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,8,Less deprived 20-30%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,9,Less deprived 10-20%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,10,Least deprived 10%,field introduced in 2016,driver_imd_decile,character +vehicle,driver_imd_decile,-1,Data missing or out of range,field introduced in 2016,driver_imd_decile,character +vehicle,driver_home_area_type,1,Urban area,field introduced in 1999,driver_home_area_type,character +vehicle,driver_home_area_type,2,Small town,field introduced in 1999,driver_home_area_type,character +vehicle,driver_home_area_type,3,Rural,field introduced in 1999,driver_home_area_type,character +vehicle,driver_home_area_type,-1,Data missing or out of range,field introduced in 1999,driver_home_area_type,character +vehicle,escooter_flag,1,Vehicle was an e-scooter,field introduced in 2023,escooter_flag,character +vehicle,escooter_flag,0,Vehicle was not an e-scooter,field introduced in 2023,escooter_flag,character +vehicle,driver_distance_banding,1,Collision occurred within 5km of drivers home postcode,field introduced in 2023,driver_distance_banding,character +vehicle,driver_distance_banding,2,Collision occurred between 5.001 and 10km of drivers home postcode,field introduced in 2023,driver_distance_banding,character +vehicle,driver_distance_banding,3,Collision occurred between 10.001 and 20km of drivers home postcode,field introduced in 2023,driver_distance_banding,character +vehicle,driver_distance_banding,4,Collision occurred between 20.001 and 100km of drivers home postcode,field introduced in 2023,driver_distance_banding,character +vehicle,driver_distance_banding,5,Collision occurred over 100km of drivers home postcode,field introduced in 2023,driver_distance_banding,character +vehicle,driver_distance_banding,-1,NA,field introduced in 2023,driver_distance_banding,character +casualty,casualty_class,1,Driver or rider,NA,casualty_class,character +casualty,casualty_class,2,Passenger,NA,casualty_class,character +casualty,casualty_class,3,Pedestrian,NA,casualty_class,character +casualty,sex_of_casualty,1,Male,NA,sex_of_casualty,character +casualty,sex_of_casualty,2,Female,NA,sex_of_casualty,character +casualty,sex_of_casualty,9,unknown (self reported),NA,sex_of_casualty,character +casualty,sex_of_casualty,-1,Data missing or out of range,NA,sex_of_casualty,character +casualty,age_of_casualty,-1,Data missing or out of range,NA,age_of_casualty,numeric +casualty,age_band_of_casualty,1,0 - 5,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,2,6 - 10,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,3,11 - 15,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,4,16 - 20,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,5,21 - 25,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,6,26 - 35,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,7,36 - 45,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,8,46 - 55,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,9,56 - 65,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,10,66 - 75,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,11,Over 75,NA,age_band_of_casualty,character +casualty,age_band_of_casualty,-1,Data missing or out of range,NA,age_band_of_casualty,character +casualty,casualty_severity,1,Fatal,NA,casualty_severity,character +casualty,casualty_severity,2,Serious,NA,casualty_severity,character +casualty,casualty_severity,3,Slight,NA,casualty_severity,character +casualty,enhanced_casualty_severity,1,Fatal,category introduced where collected in 2023,enhanced_casualty_severity,character +casualty,enhanced_casualty_severity,5,Very Serious,category introduced where collected in 2023,enhanced_casualty_severity,character +casualty,enhanced_casualty_severity,6,Moderately Serious,category introduced where collected in 2023,enhanced_casualty_severity,character +casualty,enhanced_casualty_severity,7,Less Serious,category introduced where collected in 2023,enhanced_casualty_severity,character +casualty,enhanced_casualty_severity,3,Slight,category introduced where collected in 2023,enhanced_casualty_severity,character +casualty,enhanced_casualty_severity,-1,Data missing or out of range,category introduced where collected in 2023,enhanced_casualty_severity,character +casualty,pedestrian_location,0,Not a Pedestrian,NA,pedestrian_location,character +casualty,pedestrian_location,1,Crossing on pedestrian crossing facility,NA,pedestrian_location,character +casualty,pedestrian_location,2,Crossing in zig-zag approach lines,NA,pedestrian_location,character +casualty,pedestrian_location,3,Crossing in zig-zag exit lines,NA,pedestrian_location,character +casualty,pedestrian_location,4,Crossing elsewhere within 50m. of pedestrian crossing,NA,pedestrian_location,character +casualty,pedestrian_location,5,"In carriageway, crossing elsewhere",NA,pedestrian_location,character +casualty,pedestrian_location,6,On footway or verge,NA,pedestrian_location,character +casualty,pedestrian_location,7,"On refuge, central island or central reservation",NA,pedestrian_location,character +casualty,pedestrian_location,8,"In centre of carriageway - not on refuge, island or central reservation",NA,pedestrian_location,character +casualty,pedestrian_location,9,"In carriageway, not crossing",NA,pedestrian_location,character +casualty,pedestrian_location,10,Unknown or other,NA,pedestrian_location,character +casualty,pedestrian_location,-1,Data missing or out of range,NA,pedestrian_location,character +casualty,pedestrian_movement,0,Not a Pedestrian,NA,pedestrian_movement,character +casualty,pedestrian_movement,1,Crossing from driver's nearside,NA,pedestrian_movement,character +casualty,pedestrian_movement,2,Crossing from nearside - masked by parked or stationary vehicle,NA,pedestrian_movement,character +casualty,pedestrian_movement,3,Crossing from driver's offside,NA,pedestrian_movement,character +casualty,pedestrian_movement,4,Crossing from offside - masked by parked or stationary vehicle,NA,pedestrian_movement,character +casualty,pedestrian_movement,5,"In carriageway, stationary - not crossing (standing or playing)",NA,pedestrian_movement,character +casualty,pedestrian_movement,6,"In carriageway, stationary - not crossing (standing or playing) - masked by parked or stationary vehicle",NA,pedestrian_movement,character +casualty,pedestrian_movement,7,"Walking along in carriageway, facing traffic",NA,pedestrian_movement,character +casualty,pedestrian_movement,8,"Walking along in carriageway, back to traffic",NA,pedestrian_movement,character +casualty,pedestrian_movement,9,Unknown or other,NA,pedestrian_movement,character +casualty,pedestrian_movement,-1,Data missing or out of range,NA,pedestrian_movement,character +casualty,car_passenger,0,Not car passenger,NA,car_passenger,character +casualty,car_passenger,1,Front seat passenger,NA,car_passenger,character +casualty,car_passenger,2,Rear seat passenger,NA,car_passenger,character +casualty,car_passenger,9,unknown (self reported),NA,car_passenger,character +casualty,car_passenger,-1,Data missing or out of range,NA,car_passenger,character +casualty,bus_or_coach_passenger,0,Not a bus or coach passenger,NA,bus_or_coach_passenger,character +casualty,bus_or_coach_passenger,1,Boarding,NA,bus_or_coach_passenger,character +casualty,bus_or_coach_passenger,2,Alighting,NA,bus_or_coach_passenger,character +casualty,bus_or_coach_passenger,3,Standing passenger,NA,bus_or_coach_passenger,character +casualty,bus_or_coach_passenger,4,Seated passenger,NA,bus_or_coach_passenger,character +casualty,bus_or_coach_passenger,9,unknown (self reported),NA,bus_or_coach_passenger,character +casualty,bus_or_coach_passenger,-1,Data missing or out of range,NA,bus_or_coach_passenger,character +casualty,pedestrian_road_maintenance_worker,0,No / Not applicable,NA,pedestrian_road_maintenance_worker,character +casualty,pedestrian_road_maintenance_worker,1,Yes,NA,pedestrian_road_maintenance_worker,character +casualty,pedestrian_road_maintenance_worker,2,Not Known,NA,pedestrian_road_maintenance_worker,character +casualty,pedestrian_road_maintenance_worker,3,Probable,2005 specification only,NA,NA +casualty,pedestrian_road_maintenance_worker,-1,Data missing or out of range,NA,pedestrian_road_maintenance_worker,character +casualty,casualty_type,0,Pedestrian,NA,casualty_type,character +casualty,casualty_type,1,Cyclist,NA,casualty_type,character +casualty,casualty_type,2,Motorcycle 50cc and under rider or passenger,NA,casualty_type,character +casualty,casualty_type,3,Motorcycle 125cc and under rider or passenger,introduced in 1999 specification,NA,NA +casualty,casualty_type,4,Motorcycle over 125cc and up to 500cc rider or passenger,introduced in 2005 specification,NA,NA +casualty,casualty_type,5,Motorcycle over 500cc rider or passenger,introduced in 2005 specification,NA,NA +casualty,casualty_type,8,Taxi/Private hire car occupant,introduced in 2005 specification,NA,NA +casualty,casualty_type,9,Car occupant,introduced in 2005 specification,NA,NA +casualty,casualty_type,10,Minibus (8 - 16 passenger seats) occupant,introduced in 1999 specification,NA,NA +casualty,casualty_type,11,Bus or coach occupant (17 or more pass seats),NA,casualty_type,character +casualty,casualty_type,16,Horse rider,introduced in 1999 specification,NA,NA +casualty,casualty_type,17,Agricultural vehicle occupant,introduced in 1999 specification,NA,NA +casualty,casualty_type,18,Tram occupant,introduced in 1999 specification,NA,NA +casualty,casualty_type,19,Van / Goods vehicle (3.5 tonnes mgw or under) occupant,NA,casualty_type,character +casualty,casualty_type,20,Goods vehicle (over 3.5t. and under 7.5t.) occupant,introduced in 1999 specification,NA,NA +casualty,casualty_type,21,Goods vehicle (7.5 tonnes mgw and over) occupant,introduced in 1999 specification,NA,NA +casualty,casualty_type,22,Mobility scooter rider,introduced in 2011 specification,NA,NA +casualty,casualty_type,23,Electric motorcycle rider or passenger,introduced in 2011 specification,NA,NA +casualty,casualty_type,90,Other vehicle occupant,introduced in 2011 specification,NA,NA +casualty,casualty_type,97,Motorcycle - unknown cc rider or passenger,introduced in 2011 specification,NA,NA +casualty,casualty_type,98,Goods vehicle (unknown weight) occupant,introduced in 2011 specification,NA,NA +casualty,casualty_type,99,Unknown vehicle type (self rep only),introduced in 2011 specification,NA,NA +casualty,casualty_type,103,Motorcycle - Scooter (1979-1998),dropped in 1999 specification,NA,NA +casualty,casualty_type,104,Motorcycle (1979-1998),dropped in 1999 specification,NA,NA +casualty,casualty_type,105,Motorcycle - Combination (1979-1998),dropped in 1999 specification,NA,NA +casualty,casualty_type,106,Motorcycle over 125cc (1999-2004),dropped in 2005 specification,NA,NA +casualty,casualty_type,108,Taxi (excluding private hire cars) (1979-2004),dropped in 2005 specification,NA,NA +casualty,casualty_type,109,Car (including private hire cars) (1979-2004),dropped in 2005 specification,NA,NA +casualty,casualty_type,110,Minibus/Motor caravan (1979-1998),dropped in 1999 specification,NA,NA +casualty,casualty_type,113,Goods over 3.5 tonnes (1979-1998),dropped in 1999 specification,NA,NA +casualty,casualty_type,-1,Data missing or out of range,NA,casualty_type,character +casualty,casualty_imd_decile,1,Most deprived 10%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,2,More deprived 10-20%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,3,More deprived 20-30%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,4,More deprived 30-40%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,5,More deprived 40-50%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,6,Less deprived 40-50%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,7,Less deprived 30-40%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,8,Less deprived 20-30%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,9,Less deprived 10-20%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,10,Least deprived 10%,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_imd_decile,-1,Data missing or out of range,field introduced in 2016,casualty_imd_decile,character +casualty,casualty_home_area_type,1,Urban area,field introduced in 1999,casualty_home_area_type,character +casualty,casualty_home_area_type,2,Small town,field introduced in 1999,casualty_home_area_type,character +casualty,casualty_home_area_type,3,Rural,field introduced in 1999,casualty_home_area_type,character +casualty,casualty_home_area_type,-1,Data missing or out of range,field introduced in 1999,casualty_home_area_type,character +casualty,casualty_distance_banding,1,Collision occurred within 5km of casualties home postcode,field introduced in 2023,casualty_distance_banding,character +casualty,casualty_distance_banding,2,Collision occurred between 5.001 and 10km of casualties home postcode,field introduced in 2023,casualty_distance_banding,character +casualty,casualty_distance_banding,3,Collision occurred between 10.001 and 20km of casualties home postcode,field introduced in 2023,casualty_distance_banding,character +casualty,casualty_distance_banding,4,Collision occurred between 20.001 and 100km of casualties home postcode,field introduced in 2023,casualty_distance_banding,character +casualty,casualty_distance_banding,5,Collision occurred over 100km of casualties home postcode,field introduced in 2023,casualty_distance_banding,character +casualty,casualty_distance_banding,-1,Data missing or out of range,field introduced in 2023,casualty_distance_banding,character +collision_adjustment,injury_based,0,Based on severity reporting,NA,injury_based,character +collision_adjustment,injury_based,1,Based on Injury code reporting,NA,injury_based,character +casualty_adjustment,injury_based,0,Based on severity reporting,NA,injury_based,character +casualty_adjustment,injury_based,1,Based on Injury code reporting,NA,injury_based,character diff --git a/data/stats19_schema.rda b/data/stats19_schema.rda index 517d23e232329113d7660c782a38a86233b98a7d..e28fc1a9c6b7e5d134598612986fdd96ac5fd5dd 100644 GIT binary patch literal 10158 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 cdw!BC0)Zlcpne4bK>zV~BvXY61BtA!2kdN literal 8688 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 O@pmLsg$W41Kl9LgvtV5S