Returns nearest postcodes for a given postcode. The search is based on the relative distance of the postcode centroid.
Examples
# \donttest{
nearest_postcode("EC1Y 8LX")
#> [[1]]
#> [[1]]$postcode
#> [1] "EC1Y 8LX"
#>
#> [[1]]$quality
#> [1] 1
#>
#> [[1]]$eastings
#> [1] 532544
#>
#> [[1]]$northings
#> [1] 182128
#>
#> [[1]]$country
#> [1] "England"
#>
#> [[1]]$nhs_ha
#> [1] "London"
#>
#> [[1]]$longitude
#> [1] -0.090922
#>
#> [[1]]$latitude
#> [1] 51.52252
#>
#> [[1]]$european_electoral_region
#> [1] "London"
#>
#> [[1]]$primary_care_trust
#> [1] "Islington"
#>
#> [[1]]$region
#> [1] "London"
#>
#> [[1]]$lsoa
#> [1] "Islington 023D"
#>
#> [[1]]$msoa
#> [1] "Islington 023"
#>
#> [[1]]$incode
#> [1] "8LX"
#>
#> [[1]]$outcode
#> [1] "EC1Y"
#>
#> [[1]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[1]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[1]]$admin_district
#> [1] "Islington"
#>
#> [[1]]$parish
#> [1] "Islington, unparished area"
#>
#> [[1]]$admin_county
#> NULL
#>
#> [[1]]$date_of_introduction
#> [1] "198001"
#>
#> [[1]]$admin_ward
#> [1] "Bunhill"
#>
#> [[1]]$ced
#> NULL
#>
#> [[1]]$ccg
#> [1] "NHS North Central London"
#>
#> [[1]]$nuts
#> [1] "Islington"
#>
#> [[1]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[1]]$codes
#> [[1]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[1]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[1]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[1]]$codes$parish
#> [1] "E43000209"
#>
#> [[1]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[1]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[1]]$codes$ccg
#> [1] "E38000240"
#>
#> [[1]]$codes$ccg_id
#> [1] "93C"
#>
#> [[1]]$codes$ced
#> [1] "E99999999"
#>
#> [[1]]$codes$nuts
#> [1] "TLI43"
#>
#> [[1]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[1]]$codes$msoa
#> [1] "E02000576"
#>
#> [[1]]$codes$lau2
#> [1] "E09000019"
#>
#> [[1]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[1]]$distance
#> [1] 0
#>
#>
#> [[2]]
#> [[2]]$postcode
#> [1] "EC1Y 8LD"
#>
#> [[2]]$quality
#> [1] 1
#>
#> [[2]]$eastings
#> [1] 532565
#>
#> [[2]]$northings
#> [1] 182142
#>
#> [[2]]$country
#> [1] "England"
#>
#> [[2]]$nhs_ha
#> [1] "London"
#>
#> [[2]]$longitude
#> [1] -0.090588
#>
#> [[2]]$latitude
#> [1] 51.52265
#>
#> [[2]]$european_electoral_region
#> [1] "London"
#>
#> [[2]]$primary_care_trust
#> [1] "Islington"
#>
#> [[2]]$region
#> [1] "London"
#>
#> [[2]]$lsoa
#> [1] "Islington 023D"
#>
#> [[2]]$msoa
#> [1] "Islington 023"
#>
#> [[2]]$incode
#> [1] "8LD"
#>
#> [[2]]$outcode
#> [1] "EC1Y"
#>
#> [[2]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[2]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[2]]$admin_district
#> [1] "Islington"
#>
#> [[2]]$parish
#> [1] "Islington, unparished area"
#>
#> [[2]]$admin_county
#> NULL
#>
#> [[2]]$date_of_introduction
#> [1] "198001"
#>
#> [[2]]$admin_ward
#> [1] "Bunhill"
#>
#> [[2]]$ced
#> NULL
#>
#> [[2]]$ccg
#> [1] "NHS North Central London"
#>
#> [[2]]$nuts
#> [1] "Islington"
#>
#> [[2]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[2]]$codes
#> [[2]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[2]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[2]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[2]]$codes$parish
#> [1] "E43000209"
#>
#> [[2]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[2]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[2]]$codes$ccg
#> [1] "E38000240"
#>
#> [[2]]$codes$ccg_id
#> [1] "93C"
#>
#> [[2]]$codes$ced
#> [1] "E99999999"
#>
#> [[2]]$codes$nuts
#> [1] "TLI43"
#>
#> [[2]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[2]]$codes$msoa
#> [1] "E02000576"
#>
#> [[2]]$codes$lau2
#> [1] "E09000019"
#>
#> [[2]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[2]]$distance
#> [1] 26.86317
#>
#>
#> [[3]]
#> [[3]]$postcode
#> [1] "EC1Y 8LE"
#>
#> [[3]]$quality
#> [1] 1
#>
#> [[3]]$eastings
#> [1] 532563
#>
#> [[3]]$northings
#> [1] 182101
#>
#> [[3]]$country
#> [1] "England"
#>
#> [[3]]$nhs_ha
#> [1] "London"
#>
#> [[3]]$longitude
#> [1] -0.090633
#>
#> [[3]]$latitude
#> [1] 51.52228
#>
#> [[3]]$european_electoral_region
#> [1] "London"
#>
#> [[3]]$primary_care_trust
#> [1] "Islington"
#>
#> [[3]]$region
#> [1] "London"
#>
#> [[3]]$lsoa
#> [1] "Islington 023D"
#>
#> [[3]]$msoa
#> [1] "Islington 023"
#>
#> [[3]]$incode
#> [1] "8LE"
#>
#> [[3]]$outcode
#> [1] "EC1Y"
#>
#> [[3]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[3]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[3]]$admin_district
#> [1] "Islington"
#>
#> [[3]]$parish
#> [1] "Islington, unparished area"
#>
#> [[3]]$admin_county
#> NULL
#>
#> [[3]]$date_of_introduction
#> [1] "198001"
#>
#> [[3]]$admin_ward
#> [1] "Bunhill"
#>
#> [[3]]$ced
#> NULL
#>
#> [[3]]$ccg
#> [1] "NHS North Central London"
#>
#> [[3]]$nuts
#> [1] "Islington"
#>
#> [[3]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[3]]$codes
#> [[3]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[3]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[3]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[3]]$codes$parish
#> [1] "E43000209"
#>
#> [[3]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[3]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[3]]$codes$ccg
#> [1] "E38000240"
#>
#> [[3]]$codes$ccg_id
#> [1] "93C"
#>
#> [[3]]$codes$ced
#> [1] "E99999999"
#>
#> [[3]]$codes$nuts
#> [1] "TLI43"
#>
#> [[3]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[3]]$codes$msoa
#> [1] "E02000576"
#>
#> [[3]]$codes$lau2
#> [1] "E09000019"
#>
#> [[3]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[3]]$distance
#> [1] 33.93278
#>
#>
#> [[4]]
#> [[4]]$postcode
#> [1] "EC1Y 8SE"
#>
#> [[4]]$quality
#> [1] 1
#>
#> [[4]]$eastings
#> [1] 532508
#>
#> [[4]]$northings
#> [1] 182130
#>
#> [[4]]$country
#> [1] "England"
#>
#> [[4]]$nhs_ha
#> [1] "London"
#>
#> [[4]]$longitude
#> [1] -0.091414
#>
#> [[4]]$latitude
#> [1] 51.52255
#>
#> [[4]]$european_electoral_region
#> [1] "London"
#>
#> [[4]]$primary_care_trust
#> [1] "Islington"
#>
#> [[4]]$region
#> [1] "London"
#>
#> [[4]]$lsoa
#> [1] "Islington 023D"
#>
#> [[4]]$msoa
#> [1] "Islington 023"
#>
#> [[4]]$incode
#> [1] "8SE"
#>
#> [[4]]$outcode
#> [1] "EC1Y"
#>
#> [[4]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[4]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[4]]$admin_district
#> [1] "Islington"
#>
#> [[4]]$parish
#> [1] "Islington, unparished area"
#>
#> [[4]]$admin_county
#> NULL
#>
#> [[4]]$date_of_introduction
#> [1] "201802"
#>
#> [[4]]$admin_ward
#> [1] "Bunhill"
#>
#> [[4]]$ced
#> NULL
#>
#> [[4]]$ccg
#> [1] "NHS North Central London"
#>
#> [[4]]$nuts
#> [1] "Islington"
#>
#> [[4]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[4]]$codes
#> [[4]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[4]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[4]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[4]]$codes$parish
#> [1] "E43000209"
#>
#> [[4]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[4]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[4]]$codes$ccg
#> [1] "E38000240"
#>
#> [[4]]$codes$ccg_id
#> [1] "93C"
#>
#> [[4]]$codes$ced
#> [1] "E99999999"
#>
#> [[4]]$codes$nuts
#> [1] "TLI43"
#>
#> [[4]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[4]]$codes$msoa
#> [1] "E02000576"
#>
#> [[4]]$codes$lau2
#> [1] "E09000019"
#>
#> [[4]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[4]]$distance
#> [1] 34.28968
#>
#>
#> [[5]]
#> [[5]]$postcode
#> [1] "EC1Y 8LS"
#>
#> [[5]]$quality
#> [1] 1
#>
#> [[5]]$eastings
#> [1] 532524
#>
#> [[5]]$northings
#> [1] 182170
#>
#> [[5]]$country
#> [1] "England"
#>
#> [[5]]$nhs_ha
#> [1] "London"
#>
#> [[5]]$longitude
#> [1] -0.091195
#>
#> [[5]]$latitude
#> [1] 51.52291
#>
#> [[5]]$european_electoral_region
#> [1] "London"
#>
#> [[5]]$primary_care_trust
#> [1] "Islington"
#>
#> [[5]]$region
#> [1] "London"
#>
#> [[5]]$lsoa
#> [1] "Islington 023D"
#>
#> [[5]]$msoa
#> [1] "Islington 023"
#>
#> [[5]]$incode
#> [1] "8LS"
#>
#> [[5]]$outcode
#> [1] "EC1Y"
#>
#> [[5]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[5]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[5]]$admin_district
#> [1] "Islington"
#>
#> [[5]]$parish
#> [1] "Islington, unparished area"
#>
#> [[5]]$admin_county
#> NULL
#>
#> [[5]]$date_of_introduction
#> [1] "198001"
#>
#> [[5]]$admin_ward
#> [1] "Bunhill"
#>
#> [[5]]$ced
#> NULL
#>
#> [[5]]$ccg
#> [1] "NHS North Central London"
#>
#> [[5]]$nuts
#> [1] "Islington"
#>
#> [[5]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[5]]$codes
#> [[5]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[5]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[5]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[5]]$codes$parish
#> [1] "E43000209"
#>
#> [[5]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[5]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[5]]$codes$ccg
#> [1] "E38000240"
#>
#> [[5]]$codes$ccg_id
#> [1] "93C"
#>
#> [[5]]$codes$ced
#> [1] "E99999999"
#>
#> [[5]]$codes$nuts
#> [1] "TLI43"
#>
#> [[5]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[5]]$codes$msoa
#> [1] "E02000576"
#>
#> [[5]]$codes$lau2
#> [1] "E09000019"
#>
#> [[5]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[5]]$distance
#> [1] 46.53307
#>
#>
#> [[6]]
#> [[6]]$postcode
#> [1] "EC1Y 8LT"
#>
#> [[6]]$quality
#> [1] 1
#>
#> [[6]]$eastings
#> [1] 532502
#>
#> [[6]]$northings
#> [1] 182162
#>
#> [[6]]$country
#> [1] "England"
#>
#> [[6]]$nhs_ha
#> [1] "London"
#>
#> [[6]]$longitude
#> [1] -0.091515
#>
#> [[6]]$latitude
#> [1] 51.52284
#>
#> [[6]]$european_electoral_region
#> [1] "London"
#>
#> [[6]]$primary_care_trust
#> [1] "Islington"
#>
#> [[6]]$region
#> [1] "London"
#>
#> [[6]]$lsoa
#> [1] "Islington 023D"
#>
#> [[6]]$msoa
#> [1] "Islington 023"
#>
#> [[6]]$incode
#> [1] "8LT"
#>
#> [[6]]$outcode
#> [1] "EC1Y"
#>
#> [[6]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[6]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[6]]$admin_district
#> [1] "Islington"
#>
#> [[6]]$parish
#> [1] "Islington, unparished area"
#>
#> [[6]]$admin_county
#> NULL
#>
#> [[6]]$date_of_introduction
#> [1] "198001"
#>
#> [[6]]$admin_ward
#> [1] "Bunhill"
#>
#> [[6]]$ced
#> NULL
#>
#> [[6]]$ccg
#> [1] "NHS North Central London"
#>
#> [[6]]$nuts
#> [1] "Islington"
#>
#> [[6]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[6]]$codes
#> [[6]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[6]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[6]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[6]]$codes$parish
#> [1] "E43000209"
#>
#> [[6]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[6]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[6]]$codes$ccg
#> [1] "E38000240"
#>
#> [[6]]$codes$ccg_id
#> [1] "93C"
#>
#> [[6]]$codes$ced
#> [1] "E99999999"
#>
#> [[6]]$codes$nuts
#> [1] "TLI43"
#>
#> [[6]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[6]]$codes$msoa
#> [1] "E02000576"
#>
#> [[6]]$codes$lau2
#> [1] "E09000019"
#>
#> [[6]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[6]]$distance
#> [1] 54.05747
#>
#>
#> [[7]]
#> [[7]]$postcode
#> [1] "EC1Y 8NH"
#>
#> [[7]]$quality
#> [1] 1
#>
#> [[7]]$eastings
#> [1] 532564
#>
#> [[7]]$northings
#> [1] 182184
#>
#> [[7]]$country
#> [1] "England"
#>
#> [[7]]$nhs_ha
#> [1] "London"
#>
#> [[7]]$longitude
#> [1] -0.090613
#>
#> [[7]]$latitude
#> [1] 51.52302
#>
#> [[7]]$european_electoral_region
#> [1] "London"
#>
#> [[7]]$primary_care_trust
#> [1] "Islington"
#>
#> [[7]]$region
#> [1] "London"
#>
#> [[7]]$lsoa
#> [1] "Islington 023D"
#>
#> [[7]]$msoa
#> [1] "Islington 023"
#>
#> [[7]]$incode
#> [1] "8NH"
#>
#> [[7]]$outcode
#> [1] "EC1Y"
#>
#> [[7]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[7]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[7]]$admin_district
#> [1] "Islington"
#>
#> [[7]]$parish
#> [1] "Islington, unparished area"
#>
#> [[7]]$admin_county
#> NULL
#>
#> [[7]]$date_of_introduction
#> [1] "198001"
#>
#> [[7]]$admin_ward
#> [1] "Bunhill"
#>
#> [[7]]$ced
#> NULL
#>
#> [[7]]$ccg
#> [1] "NHS North Central London"
#>
#> [[7]]$nuts
#> [1] "Islington"
#>
#> [[7]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[7]]$codes
#> [[7]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[7]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[7]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[7]]$codes$parish
#> [1] "E43000209"
#>
#> [[7]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[7]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[7]]$codes$ccg
#> [1] "E38000240"
#>
#> [[7]]$codes$ccg_id
#> [1] "93C"
#>
#> [[7]]$codes$ced
#> [1] "E99999999"
#>
#> [[7]]$codes$nuts
#> [1] "TLI43"
#>
#> [[7]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[7]]$codes$msoa
#> [1] "E02000576"
#>
#> [[7]]$codes$lau2
#> [1] "E09000019"
#>
#> [[7]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[7]]$distance
#> [1] 59.41248
#>
#>
#> [[8]]
#> [[8]]$postcode
#> [1] "EC1Y 8NJ"
#>
#> [[8]]$quality
#> [1] 1
#>
#> [[8]]$eastings
#> [1] 532564
#>
#> [[8]]$northings
#> [1] 182184
#>
#> [[8]]$country
#> [1] "England"
#>
#> [[8]]$nhs_ha
#> [1] "London"
#>
#> [[8]]$longitude
#> [1] -0.090613
#>
#> [[8]]$latitude
#> [1] 51.52302
#>
#> [[8]]$european_electoral_region
#> [1] "London"
#>
#> [[8]]$primary_care_trust
#> [1] "Islington"
#>
#> [[8]]$region
#> [1] "London"
#>
#> [[8]]$lsoa
#> [1] "Islington 023D"
#>
#> [[8]]$msoa
#> [1] "Islington 023"
#>
#> [[8]]$incode
#> [1] "8NJ"
#>
#> [[8]]$outcode
#> [1] "EC1Y"
#>
#> [[8]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[8]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[8]]$admin_district
#> [1] "Islington"
#>
#> [[8]]$parish
#> [1] "Islington, unparished area"
#>
#> [[8]]$admin_county
#> NULL
#>
#> [[8]]$date_of_introduction
#> [1] "199301"
#>
#> [[8]]$admin_ward
#> [1] "Bunhill"
#>
#> [[8]]$ced
#> NULL
#>
#> [[8]]$ccg
#> [1] "NHS North Central London"
#>
#> [[8]]$nuts
#> [1] "Islington"
#>
#> [[8]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[8]]$codes
#> [[8]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[8]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[8]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[8]]$codes$parish
#> [1] "E43000209"
#>
#> [[8]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[8]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[8]]$codes$ccg
#> [1] "E38000240"
#>
#> [[8]]$codes$ccg_id
#> [1] "93C"
#>
#> [[8]]$codes$ced
#> [1] "E99999999"
#>
#> [[8]]$codes$nuts
#> [1] "TLI43"
#>
#> [[8]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[8]]$codes$msoa
#> [1] "E02000576"
#>
#> [[8]]$codes$lau2
#> [1] "E09000019"
#>
#> [[8]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[8]]$distance
#> [1] 59.41248
#>
#>
#> [[9]]
#> [[9]]$postcode
#> [1] "EC1Y 8TZ"
#>
#> [[9]]$quality
#> [1] 1
#>
#> [[9]]$eastings
#> [1] 532580
#>
#> [[9]]$northings
#> [1] 182080
#>
#> [[9]]$country
#> [1] "England"
#>
#> [[9]]$nhs_ha
#> [1] "London"
#>
#> [[9]]$longitude
#> [1] -0.090422
#>
#> [[9]]$latitude
#> [1] 51.52208
#>
#> [[9]]$european_electoral_region
#> [1] "London"
#>
#> [[9]]$primary_care_trust
#> [1] "Islington"
#>
#> [[9]]$region
#> [1] "London"
#>
#> [[9]]$lsoa
#> [1] "Islington 023D"
#>
#> [[9]]$msoa
#> [1] "Islington 023"
#>
#> [[9]]$incode
#> [1] "8TZ"
#>
#> [[9]]$outcode
#> [1] "EC1Y"
#>
#> [[9]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[9]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[9]]$admin_district
#> [1] "Islington"
#>
#> [[9]]$parish
#> [1] "Islington, unparished area"
#>
#> [[9]]$admin_county
#> NULL
#>
#> [[9]]$date_of_introduction
#> [1] "200205"
#>
#> [[9]]$admin_ward
#> [1] "Bunhill"
#>
#> [[9]]$ced
#> NULL
#>
#> [[9]]$ccg
#> [1] "NHS North Central London"
#>
#> [[9]]$nuts
#> [1] "Islington"
#>
#> [[9]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[9]]$codes
#> [[9]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[9]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[9]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[9]]$codes$parish
#> [1] "E43000209"
#>
#> [[9]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[9]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[9]]$codes$ccg
#> [1] "E38000240"
#>
#> [[9]]$codes$ccg_id
#> [1] "93C"
#>
#> [[9]]$codes$ced
#> [1] "E99999999"
#>
#> [[9]]$codes$nuts
#> [1] "TLI43"
#>
#> [[9]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[9]]$codes$msoa
#> [1] "E02000576"
#>
#> [[9]]$codes$lau2
#> [1] "E09000019"
#>
#> [[9]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[9]]$distance
#> [1] 60.00648
#>
#>
#> [[10]]
#> [[10]]$postcode
#> [1] "EC1Y 8TE"
#>
#> [[10]]$quality
#> [1] 1
#>
#> [[10]]$eastings
#> [1] 532505
#>
#> [[10]]$northings
#> [1] 182072
#>
#> [[10]]$country
#> [1] "England"
#>
#> [[10]]$nhs_ha
#> [1] "London"
#>
#> [[10]]$longitude
#> [1] -0.091479
#>
#> [[10]]$latitude
#> [1] 51.52203
#>
#> [[10]]$european_electoral_region
#> [1] "London"
#>
#> [[10]]$primary_care_trust
#> [1] "Islington"
#>
#> [[10]]$region
#> [1] "London"
#>
#> [[10]]$lsoa
#> [1] "Islington 023D"
#>
#> [[10]]$msoa
#> [1] "Islington 023"
#>
#> [[10]]$incode
#> [1] "8TE"
#>
#> [[10]]$outcode
#> [1] "EC1Y"
#>
#> [[10]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[10]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[10]]$admin_district
#> [1] "Islington"
#>
#> [[10]]$parish
#> [1] "Islington, unparished area"
#>
#> [[10]]$admin_county
#> NULL
#>
#> [[10]]$date_of_introduction
#> [1] "198402"
#>
#> [[10]]$admin_ward
#> [1] "Bunhill"
#>
#> [[10]]$ced
#> NULL
#>
#> [[10]]$ccg
#> [1] "NHS North Central London"
#>
#> [[10]]$nuts
#> [1] "Islington"
#>
#> [[10]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[10]]$codes
#> [[10]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[10]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[10]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[10]]$codes$parish
#> [1] "E43000209"
#>
#> [[10]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[10]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[10]]$codes$ccg
#> [1] "E38000240"
#>
#> [[10]]$codes$ccg_id
#> [1] "93C"
#>
#> [[10]]$codes$ced
#> [1] "E99999999"
#>
#> [[10]]$codes$nuts
#> [1] "TLI43"
#>
#> [[10]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[10]]$codes$msoa
#> [1] "E02000576"
#>
#> [[10]]$codes$lau2
#> [1] "E09000019"
#>
#> [[10]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[10]]$distance
#> [1] 67.10526
#>
#>
nearest_postcode("EC1Y 8LX", limit = 11)
#> [[1]]
#> [[1]]$postcode
#> [1] "EC1Y 8LX"
#>
#> [[1]]$quality
#> [1] 1
#>
#> [[1]]$eastings
#> [1] 532544
#>
#> [[1]]$northings
#> [1] 182128
#>
#> [[1]]$country
#> [1] "England"
#>
#> [[1]]$nhs_ha
#> [1] "London"
#>
#> [[1]]$longitude
#> [1] -0.090922
#>
#> [[1]]$latitude
#> [1] 51.52252
#>
#> [[1]]$european_electoral_region
#> [1] "London"
#>
#> [[1]]$primary_care_trust
#> [1] "Islington"
#>
#> [[1]]$region
#> [1] "London"
#>
#> [[1]]$lsoa
#> [1] "Islington 023D"
#>
#> [[1]]$msoa
#> [1] "Islington 023"
#>
#> [[1]]$incode
#> [1] "8LX"
#>
#> [[1]]$outcode
#> [1] "EC1Y"
#>
#> [[1]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[1]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[1]]$admin_district
#> [1] "Islington"
#>
#> [[1]]$parish
#> [1] "Islington, unparished area"
#>
#> [[1]]$admin_county
#> NULL
#>
#> [[1]]$date_of_introduction
#> [1] "198001"
#>
#> [[1]]$admin_ward
#> [1] "Bunhill"
#>
#> [[1]]$ced
#> NULL
#>
#> [[1]]$ccg
#> [1] "NHS North Central London"
#>
#> [[1]]$nuts
#> [1] "Islington"
#>
#> [[1]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[1]]$codes
#> [[1]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[1]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[1]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[1]]$codes$parish
#> [1] "E43000209"
#>
#> [[1]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[1]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[1]]$codes$ccg
#> [1] "E38000240"
#>
#> [[1]]$codes$ccg_id
#> [1] "93C"
#>
#> [[1]]$codes$ced
#> [1] "E99999999"
#>
#> [[1]]$codes$nuts
#> [1] "TLI43"
#>
#> [[1]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[1]]$codes$msoa
#> [1] "E02000576"
#>
#> [[1]]$codes$lau2
#> [1] "E09000019"
#>
#> [[1]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[1]]$distance
#> [1] 0
#>
#>
#> [[2]]
#> [[2]]$postcode
#> [1] "EC1Y 8LD"
#>
#> [[2]]$quality
#> [1] 1
#>
#> [[2]]$eastings
#> [1] 532565
#>
#> [[2]]$northings
#> [1] 182142
#>
#> [[2]]$country
#> [1] "England"
#>
#> [[2]]$nhs_ha
#> [1] "London"
#>
#> [[2]]$longitude
#> [1] -0.090588
#>
#> [[2]]$latitude
#> [1] 51.52265
#>
#> [[2]]$european_electoral_region
#> [1] "London"
#>
#> [[2]]$primary_care_trust
#> [1] "Islington"
#>
#> [[2]]$region
#> [1] "London"
#>
#> [[2]]$lsoa
#> [1] "Islington 023D"
#>
#> [[2]]$msoa
#> [1] "Islington 023"
#>
#> [[2]]$incode
#> [1] "8LD"
#>
#> [[2]]$outcode
#> [1] "EC1Y"
#>
#> [[2]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[2]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[2]]$admin_district
#> [1] "Islington"
#>
#> [[2]]$parish
#> [1] "Islington, unparished area"
#>
#> [[2]]$admin_county
#> NULL
#>
#> [[2]]$date_of_introduction
#> [1] "198001"
#>
#> [[2]]$admin_ward
#> [1] "Bunhill"
#>
#> [[2]]$ced
#> NULL
#>
#> [[2]]$ccg
#> [1] "NHS North Central London"
#>
#> [[2]]$nuts
#> [1] "Islington"
#>
#> [[2]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[2]]$codes
#> [[2]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[2]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[2]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[2]]$codes$parish
#> [1] "E43000209"
#>
#> [[2]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[2]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[2]]$codes$ccg
#> [1] "E38000240"
#>
#> [[2]]$codes$ccg_id
#> [1] "93C"
#>
#> [[2]]$codes$ced
#> [1] "E99999999"
#>
#> [[2]]$codes$nuts
#> [1] "TLI43"
#>
#> [[2]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[2]]$codes$msoa
#> [1] "E02000576"
#>
#> [[2]]$codes$lau2
#> [1] "E09000019"
#>
#> [[2]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[2]]$distance
#> [1] 26.86317
#>
#>
#> [[3]]
#> [[3]]$postcode
#> [1] "EC1Y 8LE"
#>
#> [[3]]$quality
#> [1] 1
#>
#> [[3]]$eastings
#> [1] 532563
#>
#> [[3]]$northings
#> [1] 182101
#>
#> [[3]]$country
#> [1] "England"
#>
#> [[3]]$nhs_ha
#> [1] "London"
#>
#> [[3]]$longitude
#> [1] -0.090633
#>
#> [[3]]$latitude
#> [1] 51.52228
#>
#> [[3]]$european_electoral_region
#> [1] "London"
#>
#> [[3]]$primary_care_trust
#> [1] "Islington"
#>
#> [[3]]$region
#> [1] "London"
#>
#> [[3]]$lsoa
#> [1] "Islington 023D"
#>
#> [[3]]$msoa
#> [1] "Islington 023"
#>
#> [[3]]$incode
#> [1] "8LE"
#>
#> [[3]]$outcode
#> [1] "EC1Y"
#>
#> [[3]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[3]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[3]]$admin_district
#> [1] "Islington"
#>
#> [[3]]$parish
#> [1] "Islington, unparished area"
#>
#> [[3]]$admin_county
#> NULL
#>
#> [[3]]$date_of_introduction
#> [1] "198001"
#>
#> [[3]]$admin_ward
#> [1] "Bunhill"
#>
#> [[3]]$ced
#> NULL
#>
#> [[3]]$ccg
#> [1] "NHS North Central London"
#>
#> [[3]]$nuts
#> [1] "Islington"
#>
#> [[3]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[3]]$codes
#> [[3]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[3]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[3]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[3]]$codes$parish
#> [1] "E43000209"
#>
#> [[3]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[3]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[3]]$codes$ccg
#> [1] "E38000240"
#>
#> [[3]]$codes$ccg_id
#> [1] "93C"
#>
#> [[3]]$codes$ced
#> [1] "E99999999"
#>
#> [[3]]$codes$nuts
#> [1] "TLI43"
#>
#> [[3]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[3]]$codes$msoa
#> [1] "E02000576"
#>
#> [[3]]$codes$lau2
#> [1] "E09000019"
#>
#> [[3]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[3]]$distance
#> [1] 33.93278
#>
#>
#> [[4]]
#> [[4]]$postcode
#> [1] "EC1Y 8SE"
#>
#> [[4]]$quality
#> [1] 1
#>
#> [[4]]$eastings
#> [1] 532508
#>
#> [[4]]$northings
#> [1] 182130
#>
#> [[4]]$country
#> [1] "England"
#>
#> [[4]]$nhs_ha
#> [1] "London"
#>
#> [[4]]$longitude
#> [1] -0.091414
#>
#> [[4]]$latitude
#> [1] 51.52255
#>
#> [[4]]$european_electoral_region
#> [1] "London"
#>
#> [[4]]$primary_care_trust
#> [1] "Islington"
#>
#> [[4]]$region
#> [1] "London"
#>
#> [[4]]$lsoa
#> [1] "Islington 023D"
#>
#> [[4]]$msoa
#> [1] "Islington 023"
#>
#> [[4]]$incode
#> [1] "8SE"
#>
#> [[4]]$outcode
#> [1] "EC1Y"
#>
#> [[4]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[4]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[4]]$admin_district
#> [1] "Islington"
#>
#> [[4]]$parish
#> [1] "Islington, unparished area"
#>
#> [[4]]$admin_county
#> NULL
#>
#> [[4]]$date_of_introduction
#> [1] "201802"
#>
#> [[4]]$admin_ward
#> [1] "Bunhill"
#>
#> [[4]]$ced
#> NULL
#>
#> [[4]]$ccg
#> [1] "NHS North Central London"
#>
#> [[4]]$nuts
#> [1] "Islington"
#>
#> [[4]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[4]]$codes
#> [[4]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[4]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[4]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[4]]$codes$parish
#> [1] "E43000209"
#>
#> [[4]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[4]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[4]]$codes$ccg
#> [1] "E38000240"
#>
#> [[4]]$codes$ccg_id
#> [1] "93C"
#>
#> [[4]]$codes$ced
#> [1] "E99999999"
#>
#> [[4]]$codes$nuts
#> [1] "TLI43"
#>
#> [[4]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[4]]$codes$msoa
#> [1] "E02000576"
#>
#> [[4]]$codes$lau2
#> [1] "E09000019"
#>
#> [[4]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[4]]$distance
#> [1] 34.28968
#>
#>
#> [[5]]
#> [[5]]$postcode
#> [1] "EC1Y 8LS"
#>
#> [[5]]$quality
#> [1] 1
#>
#> [[5]]$eastings
#> [1] 532524
#>
#> [[5]]$northings
#> [1] 182170
#>
#> [[5]]$country
#> [1] "England"
#>
#> [[5]]$nhs_ha
#> [1] "London"
#>
#> [[5]]$longitude
#> [1] -0.091195
#>
#> [[5]]$latitude
#> [1] 51.52291
#>
#> [[5]]$european_electoral_region
#> [1] "London"
#>
#> [[5]]$primary_care_trust
#> [1] "Islington"
#>
#> [[5]]$region
#> [1] "London"
#>
#> [[5]]$lsoa
#> [1] "Islington 023D"
#>
#> [[5]]$msoa
#> [1] "Islington 023"
#>
#> [[5]]$incode
#> [1] "8LS"
#>
#> [[5]]$outcode
#> [1] "EC1Y"
#>
#> [[5]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[5]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[5]]$admin_district
#> [1] "Islington"
#>
#> [[5]]$parish
#> [1] "Islington, unparished area"
#>
#> [[5]]$admin_county
#> NULL
#>
#> [[5]]$date_of_introduction
#> [1] "198001"
#>
#> [[5]]$admin_ward
#> [1] "Bunhill"
#>
#> [[5]]$ced
#> NULL
#>
#> [[5]]$ccg
#> [1] "NHS North Central London"
#>
#> [[5]]$nuts
#> [1] "Islington"
#>
#> [[5]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[5]]$codes
#> [[5]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[5]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[5]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[5]]$codes$parish
#> [1] "E43000209"
#>
#> [[5]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[5]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[5]]$codes$ccg
#> [1] "E38000240"
#>
#> [[5]]$codes$ccg_id
#> [1] "93C"
#>
#> [[5]]$codes$ced
#> [1] "E99999999"
#>
#> [[5]]$codes$nuts
#> [1] "TLI43"
#>
#> [[5]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[5]]$codes$msoa
#> [1] "E02000576"
#>
#> [[5]]$codes$lau2
#> [1] "E09000019"
#>
#> [[5]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[5]]$distance
#> [1] 46.53307
#>
#>
#> [[6]]
#> [[6]]$postcode
#> [1] "EC1Y 8LT"
#>
#> [[6]]$quality
#> [1] 1
#>
#> [[6]]$eastings
#> [1] 532502
#>
#> [[6]]$northings
#> [1] 182162
#>
#> [[6]]$country
#> [1] "England"
#>
#> [[6]]$nhs_ha
#> [1] "London"
#>
#> [[6]]$longitude
#> [1] -0.091515
#>
#> [[6]]$latitude
#> [1] 51.52284
#>
#> [[6]]$european_electoral_region
#> [1] "London"
#>
#> [[6]]$primary_care_trust
#> [1] "Islington"
#>
#> [[6]]$region
#> [1] "London"
#>
#> [[6]]$lsoa
#> [1] "Islington 023D"
#>
#> [[6]]$msoa
#> [1] "Islington 023"
#>
#> [[6]]$incode
#> [1] "8LT"
#>
#> [[6]]$outcode
#> [1] "EC1Y"
#>
#> [[6]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[6]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[6]]$admin_district
#> [1] "Islington"
#>
#> [[6]]$parish
#> [1] "Islington, unparished area"
#>
#> [[6]]$admin_county
#> NULL
#>
#> [[6]]$date_of_introduction
#> [1] "198001"
#>
#> [[6]]$admin_ward
#> [1] "Bunhill"
#>
#> [[6]]$ced
#> NULL
#>
#> [[6]]$ccg
#> [1] "NHS North Central London"
#>
#> [[6]]$nuts
#> [1] "Islington"
#>
#> [[6]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[6]]$codes
#> [[6]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[6]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[6]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[6]]$codes$parish
#> [1] "E43000209"
#>
#> [[6]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[6]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[6]]$codes$ccg
#> [1] "E38000240"
#>
#> [[6]]$codes$ccg_id
#> [1] "93C"
#>
#> [[6]]$codes$ced
#> [1] "E99999999"
#>
#> [[6]]$codes$nuts
#> [1] "TLI43"
#>
#> [[6]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[6]]$codes$msoa
#> [1] "E02000576"
#>
#> [[6]]$codes$lau2
#> [1] "E09000019"
#>
#> [[6]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[6]]$distance
#> [1] 54.05747
#>
#>
#> [[7]]
#> [[7]]$postcode
#> [1] "EC1Y 8NH"
#>
#> [[7]]$quality
#> [1] 1
#>
#> [[7]]$eastings
#> [1] 532564
#>
#> [[7]]$northings
#> [1] 182184
#>
#> [[7]]$country
#> [1] "England"
#>
#> [[7]]$nhs_ha
#> [1] "London"
#>
#> [[7]]$longitude
#> [1] -0.090613
#>
#> [[7]]$latitude
#> [1] 51.52302
#>
#> [[7]]$european_electoral_region
#> [1] "London"
#>
#> [[7]]$primary_care_trust
#> [1] "Islington"
#>
#> [[7]]$region
#> [1] "London"
#>
#> [[7]]$lsoa
#> [1] "Islington 023D"
#>
#> [[7]]$msoa
#> [1] "Islington 023"
#>
#> [[7]]$incode
#> [1] "8NH"
#>
#> [[7]]$outcode
#> [1] "EC1Y"
#>
#> [[7]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[7]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[7]]$admin_district
#> [1] "Islington"
#>
#> [[7]]$parish
#> [1] "Islington, unparished area"
#>
#> [[7]]$admin_county
#> NULL
#>
#> [[7]]$date_of_introduction
#> [1] "198001"
#>
#> [[7]]$admin_ward
#> [1] "Bunhill"
#>
#> [[7]]$ced
#> NULL
#>
#> [[7]]$ccg
#> [1] "NHS North Central London"
#>
#> [[7]]$nuts
#> [1] "Islington"
#>
#> [[7]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[7]]$codes
#> [[7]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[7]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[7]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[7]]$codes$parish
#> [1] "E43000209"
#>
#> [[7]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[7]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[7]]$codes$ccg
#> [1] "E38000240"
#>
#> [[7]]$codes$ccg_id
#> [1] "93C"
#>
#> [[7]]$codes$ced
#> [1] "E99999999"
#>
#> [[7]]$codes$nuts
#> [1] "TLI43"
#>
#> [[7]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[7]]$codes$msoa
#> [1] "E02000576"
#>
#> [[7]]$codes$lau2
#> [1] "E09000019"
#>
#> [[7]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[7]]$distance
#> [1] 59.41248
#>
#>
#> [[8]]
#> [[8]]$postcode
#> [1] "EC1Y 8NJ"
#>
#> [[8]]$quality
#> [1] 1
#>
#> [[8]]$eastings
#> [1] 532564
#>
#> [[8]]$northings
#> [1] 182184
#>
#> [[8]]$country
#> [1] "England"
#>
#> [[8]]$nhs_ha
#> [1] "London"
#>
#> [[8]]$longitude
#> [1] -0.090613
#>
#> [[8]]$latitude
#> [1] 51.52302
#>
#> [[8]]$european_electoral_region
#> [1] "London"
#>
#> [[8]]$primary_care_trust
#> [1] "Islington"
#>
#> [[8]]$region
#> [1] "London"
#>
#> [[8]]$lsoa
#> [1] "Islington 023D"
#>
#> [[8]]$msoa
#> [1] "Islington 023"
#>
#> [[8]]$incode
#> [1] "8NJ"
#>
#> [[8]]$outcode
#> [1] "EC1Y"
#>
#> [[8]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[8]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[8]]$admin_district
#> [1] "Islington"
#>
#> [[8]]$parish
#> [1] "Islington, unparished area"
#>
#> [[8]]$admin_county
#> NULL
#>
#> [[8]]$date_of_introduction
#> [1] "199301"
#>
#> [[8]]$admin_ward
#> [1] "Bunhill"
#>
#> [[8]]$ced
#> NULL
#>
#> [[8]]$ccg
#> [1] "NHS North Central London"
#>
#> [[8]]$nuts
#> [1] "Islington"
#>
#> [[8]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[8]]$codes
#> [[8]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[8]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[8]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[8]]$codes$parish
#> [1] "E43000209"
#>
#> [[8]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[8]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[8]]$codes$ccg
#> [1] "E38000240"
#>
#> [[8]]$codes$ccg_id
#> [1] "93C"
#>
#> [[8]]$codes$ced
#> [1] "E99999999"
#>
#> [[8]]$codes$nuts
#> [1] "TLI43"
#>
#> [[8]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[8]]$codes$msoa
#> [1] "E02000576"
#>
#> [[8]]$codes$lau2
#> [1] "E09000019"
#>
#> [[8]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[8]]$distance
#> [1] 59.41248
#>
#>
#> [[9]]
#> [[9]]$postcode
#> [1] "EC1Y 8TZ"
#>
#> [[9]]$quality
#> [1] 1
#>
#> [[9]]$eastings
#> [1] 532580
#>
#> [[9]]$northings
#> [1] 182080
#>
#> [[9]]$country
#> [1] "England"
#>
#> [[9]]$nhs_ha
#> [1] "London"
#>
#> [[9]]$longitude
#> [1] -0.090422
#>
#> [[9]]$latitude
#> [1] 51.52208
#>
#> [[9]]$european_electoral_region
#> [1] "London"
#>
#> [[9]]$primary_care_trust
#> [1] "Islington"
#>
#> [[9]]$region
#> [1] "London"
#>
#> [[9]]$lsoa
#> [1] "Islington 023D"
#>
#> [[9]]$msoa
#> [1] "Islington 023"
#>
#> [[9]]$incode
#> [1] "8TZ"
#>
#> [[9]]$outcode
#> [1] "EC1Y"
#>
#> [[9]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[9]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[9]]$admin_district
#> [1] "Islington"
#>
#> [[9]]$parish
#> [1] "Islington, unparished area"
#>
#> [[9]]$admin_county
#> NULL
#>
#> [[9]]$date_of_introduction
#> [1] "200205"
#>
#> [[9]]$admin_ward
#> [1] "Bunhill"
#>
#> [[9]]$ced
#> NULL
#>
#> [[9]]$ccg
#> [1] "NHS North Central London"
#>
#> [[9]]$nuts
#> [1] "Islington"
#>
#> [[9]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[9]]$codes
#> [[9]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[9]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[9]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[9]]$codes$parish
#> [1] "E43000209"
#>
#> [[9]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[9]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[9]]$codes$ccg
#> [1] "E38000240"
#>
#> [[9]]$codes$ccg_id
#> [1] "93C"
#>
#> [[9]]$codes$ced
#> [1] "E99999999"
#>
#> [[9]]$codes$nuts
#> [1] "TLI43"
#>
#> [[9]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[9]]$codes$msoa
#> [1] "E02000576"
#>
#> [[9]]$codes$lau2
#> [1] "E09000019"
#>
#> [[9]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[9]]$distance
#> [1] 60.00648
#>
#>
#> [[10]]
#> [[10]]$postcode
#> [1] "EC1Y 8TE"
#>
#> [[10]]$quality
#> [1] 1
#>
#> [[10]]$eastings
#> [1] 532505
#>
#> [[10]]$northings
#> [1] 182072
#>
#> [[10]]$country
#> [1] "England"
#>
#> [[10]]$nhs_ha
#> [1] "London"
#>
#> [[10]]$longitude
#> [1] -0.091479
#>
#> [[10]]$latitude
#> [1] 51.52203
#>
#> [[10]]$european_electoral_region
#> [1] "London"
#>
#> [[10]]$primary_care_trust
#> [1] "Islington"
#>
#> [[10]]$region
#> [1] "London"
#>
#> [[10]]$lsoa
#> [1] "Islington 023D"
#>
#> [[10]]$msoa
#> [1] "Islington 023"
#>
#> [[10]]$incode
#> [1] "8TE"
#>
#> [[10]]$outcode
#> [1] "EC1Y"
#>
#> [[10]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[10]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[10]]$admin_district
#> [1] "Islington"
#>
#> [[10]]$parish
#> [1] "Islington, unparished area"
#>
#> [[10]]$admin_county
#> NULL
#>
#> [[10]]$date_of_introduction
#> [1] "198402"
#>
#> [[10]]$admin_ward
#> [1] "Bunhill"
#>
#> [[10]]$ced
#> NULL
#>
#> [[10]]$ccg
#> [1] "NHS North Central London"
#>
#> [[10]]$nuts
#> [1] "Islington"
#>
#> [[10]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[10]]$codes
#> [[10]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[10]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[10]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[10]]$codes$parish
#> [1] "E43000209"
#>
#> [[10]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[10]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[10]]$codes$ccg
#> [1] "E38000240"
#>
#> [[10]]$codes$ccg_id
#> [1] "93C"
#>
#> [[10]]$codes$ced
#> [1] "E99999999"
#>
#> [[10]]$codes$nuts
#> [1] "TLI43"
#>
#> [[10]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[10]]$codes$msoa
#> [1] "E02000576"
#>
#> [[10]]$codes$lau2
#> [1] "E09000019"
#>
#> [[10]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[10]]$distance
#> [1] 67.10526
#>
#>
#> [[11]]
#> [[11]]$postcode
#> [1] "EC1Y 8LZ"
#>
#> [[11]]$quality
#> [1] 1
#>
#> [[11]]$eastings
#> [1] 532600
#>
#> [[11]]$northings
#> [1] 182163
#>
#> [[11]]$country
#> [1] "England"
#>
#> [[11]]$nhs_ha
#> [1] "London"
#>
#> [[11]]$longitude
#> [1] -0.090076
#>
#> [[11]]$latitude
#> [1] 51.52283
#>
#> [[11]]$european_electoral_region
#> [1] "London"
#>
#> [[11]]$primary_care_trust
#> [1] "Islington"
#>
#> [[11]]$region
#> [1] "London"
#>
#> [[11]]$lsoa
#> [1] "Islington 023D"
#>
#> [[11]]$msoa
#> [1] "Islington 023"
#>
#> [[11]]$incode
#> [1] "8LZ"
#>
#> [[11]]$outcode
#> [1] "EC1Y"
#>
#> [[11]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[11]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[11]]$admin_district
#> [1] "Islington"
#>
#> [[11]]$parish
#> [1] "Islington, unparished area"
#>
#> [[11]]$admin_county
#> NULL
#>
#> [[11]]$date_of_introduction
#> [1] "202211"
#>
#> [[11]]$admin_ward
#> [1] "Bunhill"
#>
#> [[11]]$ced
#> NULL
#>
#> [[11]]$ccg
#> [1] "NHS North Central London"
#>
#> [[11]]$nuts
#> [1] "Islington"
#>
#> [[11]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[11]]$codes
#> [[11]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[11]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[11]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[11]]$codes$parish
#> [1] "E43000209"
#>
#> [[11]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[11]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[11]]$codes$ccg
#> [1] "E38000240"
#>
#> [[11]]$codes$ccg_id
#> [1] "93C"
#>
#> [[11]]$codes$ced
#> [1] "E99999999"
#>
#> [[11]]$codes$nuts
#> [1] "TLI43"
#>
#> [[11]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[11]]$codes$msoa
#> [1] "E02000576"
#>
#> [[11]]$codes$lau2
#> [1] "E09000019"
#>
#> [[11]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[11]]$distance
#> [1] 67.70669
#>
#>
nearest_postcode("EC1Y 8LX", limit = 12, radius = 200)
#> [[1]]
#> [[1]]$postcode
#> [1] "EC1Y 8LX"
#>
#> [[1]]$quality
#> [1] 1
#>
#> [[1]]$eastings
#> [1] 532544
#>
#> [[1]]$northings
#> [1] 182128
#>
#> [[1]]$country
#> [1] "England"
#>
#> [[1]]$nhs_ha
#> [1] "London"
#>
#> [[1]]$longitude
#> [1] -0.090922
#>
#> [[1]]$latitude
#> [1] 51.52252
#>
#> [[1]]$european_electoral_region
#> [1] "London"
#>
#> [[1]]$primary_care_trust
#> [1] "Islington"
#>
#> [[1]]$region
#> [1] "London"
#>
#> [[1]]$lsoa
#> [1] "Islington 023D"
#>
#> [[1]]$msoa
#> [1] "Islington 023"
#>
#> [[1]]$incode
#> [1] "8LX"
#>
#> [[1]]$outcode
#> [1] "EC1Y"
#>
#> [[1]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[1]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[1]]$admin_district
#> [1] "Islington"
#>
#> [[1]]$parish
#> [1] "Islington, unparished area"
#>
#> [[1]]$admin_county
#> NULL
#>
#> [[1]]$date_of_introduction
#> [1] "198001"
#>
#> [[1]]$admin_ward
#> [1] "Bunhill"
#>
#> [[1]]$ced
#> NULL
#>
#> [[1]]$ccg
#> [1] "NHS North Central London"
#>
#> [[1]]$nuts
#> [1] "Islington"
#>
#> [[1]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[1]]$codes
#> [[1]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[1]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[1]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[1]]$codes$parish
#> [1] "E43000209"
#>
#> [[1]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[1]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[1]]$codes$ccg
#> [1] "E38000240"
#>
#> [[1]]$codes$ccg_id
#> [1] "93C"
#>
#> [[1]]$codes$ced
#> [1] "E99999999"
#>
#> [[1]]$codes$nuts
#> [1] "TLI43"
#>
#> [[1]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[1]]$codes$msoa
#> [1] "E02000576"
#>
#> [[1]]$codes$lau2
#> [1] "E09000019"
#>
#> [[1]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[1]]$distance
#> [1] 0
#>
#>
#> [[2]]
#> [[2]]$postcode
#> [1] "EC1Y 8LD"
#>
#> [[2]]$quality
#> [1] 1
#>
#> [[2]]$eastings
#> [1] 532565
#>
#> [[2]]$northings
#> [1] 182142
#>
#> [[2]]$country
#> [1] "England"
#>
#> [[2]]$nhs_ha
#> [1] "London"
#>
#> [[2]]$longitude
#> [1] -0.090588
#>
#> [[2]]$latitude
#> [1] 51.52265
#>
#> [[2]]$european_electoral_region
#> [1] "London"
#>
#> [[2]]$primary_care_trust
#> [1] "Islington"
#>
#> [[2]]$region
#> [1] "London"
#>
#> [[2]]$lsoa
#> [1] "Islington 023D"
#>
#> [[2]]$msoa
#> [1] "Islington 023"
#>
#> [[2]]$incode
#> [1] "8LD"
#>
#> [[2]]$outcode
#> [1] "EC1Y"
#>
#> [[2]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[2]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[2]]$admin_district
#> [1] "Islington"
#>
#> [[2]]$parish
#> [1] "Islington, unparished area"
#>
#> [[2]]$admin_county
#> NULL
#>
#> [[2]]$date_of_introduction
#> [1] "198001"
#>
#> [[2]]$admin_ward
#> [1] "Bunhill"
#>
#> [[2]]$ced
#> NULL
#>
#> [[2]]$ccg
#> [1] "NHS North Central London"
#>
#> [[2]]$nuts
#> [1] "Islington"
#>
#> [[2]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[2]]$codes
#> [[2]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[2]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[2]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[2]]$codes$parish
#> [1] "E43000209"
#>
#> [[2]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[2]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[2]]$codes$ccg
#> [1] "E38000240"
#>
#> [[2]]$codes$ccg_id
#> [1] "93C"
#>
#> [[2]]$codes$ced
#> [1] "E99999999"
#>
#> [[2]]$codes$nuts
#> [1] "TLI43"
#>
#> [[2]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[2]]$codes$msoa
#> [1] "E02000576"
#>
#> [[2]]$codes$lau2
#> [1] "E09000019"
#>
#> [[2]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[2]]$distance
#> [1] 26.86317
#>
#>
#> [[3]]
#> [[3]]$postcode
#> [1] "EC1Y 8LE"
#>
#> [[3]]$quality
#> [1] 1
#>
#> [[3]]$eastings
#> [1] 532563
#>
#> [[3]]$northings
#> [1] 182101
#>
#> [[3]]$country
#> [1] "England"
#>
#> [[3]]$nhs_ha
#> [1] "London"
#>
#> [[3]]$longitude
#> [1] -0.090633
#>
#> [[3]]$latitude
#> [1] 51.52228
#>
#> [[3]]$european_electoral_region
#> [1] "London"
#>
#> [[3]]$primary_care_trust
#> [1] "Islington"
#>
#> [[3]]$region
#> [1] "London"
#>
#> [[3]]$lsoa
#> [1] "Islington 023D"
#>
#> [[3]]$msoa
#> [1] "Islington 023"
#>
#> [[3]]$incode
#> [1] "8LE"
#>
#> [[3]]$outcode
#> [1] "EC1Y"
#>
#> [[3]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[3]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[3]]$admin_district
#> [1] "Islington"
#>
#> [[3]]$parish
#> [1] "Islington, unparished area"
#>
#> [[3]]$admin_county
#> NULL
#>
#> [[3]]$date_of_introduction
#> [1] "198001"
#>
#> [[3]]$admin_ward
#> [1] "Bunhill"
#>
#> [[3]]$ced
#> NULL
#>
#> [[3]]$ccg
#> [1] "NHS North Central London"
#>
#> [[3]]$nuts
#> [1] "Islington"
#>
#> [[3]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[3]]$codes
#> [[3]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[3]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[3]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[3]]$codes$parish
#> [1] "E43000209"
#>
#> [[3]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[3]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[3]]$codes$ccg
#> [1] "E38000240"
#>
#> [[3]]$codes$ccg_id
#> [1] "93C"
#>
#> [[3]]$codes$ced
#> [1] "E99999999"
#>
#> [[3]]$codes$nuts
#> [1] "TLI43"
#>
#> [[3]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[3]]$codes$msoa
#> [1] "E02000576"
#>
#> [[3]]$codes$lau2
#> [1] "E09000019"
#>
#> [[3]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[3]]$distance
#> [1] 33.93278
#>
#>
#> [[4]]
#> [[4]]$postcode
#> [1] "EC1Y 8SE"
#>
#> [[4]]$quality
#> [1] 1
#>
#> [[4]]$eastings
#> [1] 532508
#>
#> [[4]]$northings
#> [1] 182130
#>
#> [[4]]$country
#> [1] "England"
#>
#> [[4]]$nhs_ha
#> [1] "London"
#>
#> [[4]]$longitude
#> [1] -0.091414
#>
#> [[4]]$latitude
#> [1] 51.52255
#>
#> [[4]]$european_electoral_region
#> [1] "London"
#>
#> [[4]]$primary_care_trust
#> [1] "Islington"
#>
#> [[4]]$region
#> [1] "London"
#>
#> [[4]]$lsoa
#> [1] "Islington 023D"
#>
#> [[4]]$msoa
#> [1] "Islington 023"
#>
#> [[4]]$incode
#> [1] "8SE"
#>
#> [[4]]$outcode
#> [1] "EC1Y"
#>
#> [[4]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[4]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[4]]$admin_district
#> [1] "Islington"
#>
#> [[4]]$parish
#> [1] "Islington, unparished area"
#>
#> [[4]]$admin_county
#> NULL
#>
#> [[4]]$date_of_introduction
#> [1] "201802"
#>
#> [[4]]$admin_ward
#> [1] "Bunhill"
#>
#> [[4]]$ced
#> NULL
#>
#> [[4]]$ccg
#> [1] "NHS North Central London"
#>
#> [[4]]$nuts
#> [1] "Islington"
#>
#> [[4]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[4]]$codes
#> [[4]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[4]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[4]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[4]]$codes$parish
#> [1] "E43000209"
#>
#> [[4]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[4]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[4]]$codes$ccg
#> [1] "E38000240"
#>
#> [[4]]$codes$ccg_id
#> [1] "93C"
#>
#> [[4]]$codes$ced
#> [1] "E99999999"
#>
#> [[4]]$codes$nuts
#> [1] "TLI43"
#>
#> [[4]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[4]]$codes$msoa
#> [1] "E02000576"
#>
#> [[4]]$codes$lau2
#> [1] "E09000019"
#>
#> [[4]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[4]]$distance
#> [1] 34.28968
#>
#>
#> [[5]]
#> [[5]]$postcode
#> [1] "EC1Y 8LS"
#>
#> [[5]]$quality
#> [1] 1
#>
#> [[5]]$eastings
#> [1] 532524
#>
#> [[5]]$northings
#> [1] 182170
#>
#> [[5]]$country
#> [1] "England"
#>
#> [[5]]$nhs_ha
#> [1] "London"
#>
#> [[5]]$longitude
#> [1] -0.091195
#>
#> [[5]]$latitude
#> [1] 51.52291
#>
#> [[5]]$european_electoral_region
#> [1] "London"
#>
#> [[5]]$primary_care_trust
#> [1] "Islington"
#>
#> [[5]]$region
#> [1] "London"
#>
#> [[5]]$lsoa
#> [1] "Islington 023D"
#>
#> [[5]]$msoa
#> [1] "Islington 023"
#>
#> [[5]]$incode
#> [1] "8LS"
#>
#> [[5]]$outcode
#> [1] "EC1Y"
#>
#> [[5]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[5]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[5]]$admin_district
#> [1] "Islington"
#>
#> [[5]]$parish
#> [1] "Islington, unparished area"
#>
#> [[5]]$admin_county
#> NULL
#>
#> [[5]]$date_of_introduction
#> [1] "198001"
#>
#> [[5]]$admin_ward
#> [1] "Bunhill"
#>
#> [[5]]$ced
#> NULL
#>
#> [[5]]$ccg
#> [1] "NHS North Central London"
#>
#> [[5]]$nuts
#> [1] "Islington"
#>
#> [[5]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[5]]$codes
#> [[5]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[5]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[5]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[5]]$codes$parish
#> [1] "E43000209"
#>
#> [[5]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[5]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[5]]$codes$ccg
#> [1] "E38000240"
#>
#> [[5]]$codes$ccg_id
#> [1] "93C"
#>
#> [[5]]$codes$ced
#> [1] "E99999999"
#>
#> [[5]]$codes$nuts
#> [1] "TLI43"
#>
#> [[5]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[5]]$codes$msoa
#> [1] "E02000576"
#>
#> [[5]]$codes$lau2
#> [1] "E09000019"
#>
#> [[5]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[5]]$distance
#> [1] 46.53307
#>
#>
#> [[6]]
#> [[6]]$postcode
#> [1] "EC1Y 8LT"
#>
#> [[6]]$quality
#> [1] 1
#>
#> [[6]]$eastings
#> [1] 532502
#>
#> [[6]]$northings
#> [1] 182162
#>
#> [[6]]$country
#> [1] "England"
#>
#> [[6]]$nhs_ha
#> [1] "London"
#>
#> [[6]]$longitude
#> [1] -0.091515
#>
#> [[6]]$latitude
#> [1] 51.52284
#>
#> [[6]]$european_electoral_region
#> [1] "London"
#>
#> [[6]]$primary_care_trust
#> [1] "Islington"
#>
#> [[6]]$region
#> [1] "London"
#>
#> [[6]]$lsoa
#> [1] "Islington 023D"
#>
#> [[6]]$msoa
#> [1] "Islington 023"
#>
#> [[6]]$incode
#> [1] "8LT"
#>
#> [[6]]$outcode
#> [1] "EC1Y"
#>
#> [[6]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[6]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[6]]$admin_district
#> [1] "Islington"
#>
#> [[6]]$parish
#> [1] "Islington, unparished area"
#>
#> [[6]]$admin_county
#> NULL
#>
#> [[6]]$date_of_introduction
#> [1] "198001"
#>
#> [[6]]$admin_ward
#> [1] "Bunhill"
#>
#> [[6]]$ced
#> NULL
#>
#> [[6]]$ccg
#> [1] "NHS North Central London"
#>
#> [[6]]$nuts
#> [1] "Islington"
#>
#> [[6]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[6]]$codes
#> [[6]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[6]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[6]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[6]]$codes$parish
#> [1] "E43000209"
#>
#> [[6]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[6]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[6]]$codes$ccg
#> [1] "E38000240"
#>
#> [[6]]$codes$ccg_id
#> [1] "93C"
#>
#> [[6]]$codes$ced
#> [1] "E99999999"
#>
#> [[6]]$codes$nuts
#> [1] "TLI43"
#>
#> [[6]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[6]]$codes$msoa
#> [1] "E02000576"
#>
#> [[6]]$codes$lau2
#> [1] "E09000019"
#>
#> [[6]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[6]]$distance
#> [1] 54.05747
#>
#>
#> [[7]]
#> [[7]]$postcode
#> [1] "EC1Y 8NH"
#>
#> [[7]]$quality
#> [1] 1
#>
#> [[7]]$eastings
#> [1] 532564
#>
#> [[7]]$northings
#> [1] 182184
#>
#> [[7]]$country
#> [1] "England"
#>
#> [[7]]$nhs_ha
#> [1] "London"
#>
#> [[7]]$longitude
#> [1] -0.090613
#>
#> [[7]]$latitude
#> [1] 51.52302
#>
#> [[7]]$european_electoral_region
#> [1] "London"
#>
#> [[7]]$primary_care_trust
#> [1] "Islington"
#>
#> [[7]]$region
#> [1] "London"
#>
#> [[7]]$lsoa
#> [1] "Islington 023D"
#>
#> [[7]]$msoa
#> [1] "Islington 023"
#>
#> [[7]]$incode
#> [1] "8NH"
#>
#> [[7]]$outcode
#> [1] "EC1Y"
#>
#> [[7]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[7]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[7]]$admin_district
#> [1] "Islington"
#>
#> [[7]]$parish
#> [1] "Islington, unparished area"
#>
#> [[7]]$admin_county
#> NULL
#>
#> [[7]]$date_of_introduction
#> [1] "198001"
#>
#> [[7]]$admin_ward
#> [1] "Bunhill"
#>
#> [[7]]$ced
#> NULL
#>
#> [[7]]$ccg
#> [1] "NHS North Central London"
#>
#> [[7]]$nuts
#> [1] "Islington"
#>
#> [[7]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[7]]$codes
#> [[7]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[7]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[7]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[7]]$codes$parish
#> [1] "E43000209"
#>
#> [[7]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[7]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[7]]$codes$ccg
#> [1] "E38000240"
#>
#> [[7]]$codes$ccg_id
#> [1] "93C"
#>
#> [[7]]$codes$ced
#> [1] "E99999999"
#>
#> [[7]]$codes$nuts
#> [1] "TLI43"
#>
#> [[7]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[7]]$codes$msoa
#> [1] "E02000576"
#>
#> [[7]]$codes$lau2
#> [1] "E09000019"
#>
#> [[7]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[7]]$distance
#> [1] 59.41248
#>
#>
#> [[8]]
#> [[8]]$postcode
#> [1] "EC1Y 8NJ"
#>
#> [[8]]$quality
#> [1] 1
#>
#> [[8]]$eastings
#> [1] 532564
#>
#> [[8]]$northings
#> [1] 182184
#>
#> [[8]]$country
#> [1] "England"
#>
#> [[8]]$nhs_ha
#> [1] "London"
#>
#> [[8]]$longitude
#> [1] -0.090613
#>
#> [[8]]$latitude
#> [1] 51.52302
#>
#> [[8]]$european_electoral_region
#> [1] "London"
#>
#> [[8]]$primary_care_trust
#> [1] "Islington"
#>
#> [[8]]$region
#> [1] "London"
#>
#> [[8]]$lsoa
#> [1] "Islington 023D"
#>
#> [[8]]$msoa
#> [1] "Islington 023"
#>
#> [[8]]$incode
#> [1] "8NJ"
#>
#> [[8]]$outcode
#> [1] "EC1Y"
#>
#> [[8]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[8]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[8]]$admin_district
#> [1] "Islington"
#>
#> [[8]]$parish
#> [1] "Islington, unparished area"
#>
#> [[8]]$admin_county
#> NULL
#>
#> [[8]]$date_of_introduction
#> [1] "199301"
#>
#> [[8]]$admin_ward
#> [1] "Bunhill"
#>
#> [[8]]$ced
#> NULL
#>
#> [[8]]$ccg
#> [1] "NHS North Central London"
#>
#> [[8]]$nuts
#> [1] "Islington"
#>
#> [[8]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[8]]$codes
#> [[8]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[8]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[8]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[8]]$codes$parish
#> [1] "E43000209"
#>
#> [[8]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[8]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[8]]$codes$ccg
#> [1] "E38000240"
#>
#> [[8]]$codes$ccg_id
#> [1] "93C"
#>
#> [[8]]$codes$ced
#> [1] "E99999999"
#>
#> [[8]]$codes$nuts
#> [1] "TLI43"
#>
#> [[8]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[8]]$codes$msoa
#> [1] "E02000576"
#>
#> [[8]]$codes$lau2
#> [1] "E09000019"
#>
#> [[8]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[8]]$distance
#> [1] 59.41248
#>
#>
#> [[9]]
#> [[9]]$postcode
#> [1] "EC1Y 8TZ"
#>
#> [[9]]$quality
#> [1] 1
#>
#> [[9]]$eastings
#> [1] 532580
#>
#> [[9]]$northings
#> [1] 182080
#>
#> [[9]]$country
#> [1] "England"
#>
#> [[9]]$nhs_ha
#> [1] "London"
#>
#> [[9]]$longitude
#> [1] -0.090422
#>
#> [[9]]$latitude
#> [1] 51.52208
#>
#> [[9]]$european_electoral_region
#> [1] "London"
#>
#> [[9]]$primary_care_trust
#> [1] "Islington"
#>
#> [[9]]$region
#> [1] "London"
#>
#> [[9]]$lsoa
#> [1] "Islington 023D"
#>
#> [[9]]$msoa
#> [1] "Islington 023"
#>
#> [[9]]$incode
#> [1] "8TZ"
#>
#> [[9]]$outcode
#> [1] "EC1Y"
#>
#> [[9]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[9]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[9]]$admin_district
#> [1] "Islington"
#>
#> [[9]]$parish
#> [1] "Islington, unparished area"
#>
#> [[9]]$admin_county
#> NULL
#>
#> [[9]]$date_of_introduction
#> [1] "200205"
#>
#> [[9]]$admin_ward
#> [1] "Bunhill"
#>
#> [[9]]$ced
#> NULL
#>
#> [[9]]$ccg
#> [1] "NHS North Central London"
#>
#> [[9]]$nuts
#> [1] "Islington"
#>
#> [[9]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[9]]$codes
#> [[9]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[9]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[9]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[9]]$codes$parish
#> [1] "E43000209"
#>
#> [[9]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[9]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[9]]$codes$ccg
#> [1] "E38000240"
#>
#> [[9]]$codes$ccg_id
#> [1] "93C"
#>
#> [[9]]$codes$ced
#> [1] "E99999999"
#>
#> [[9]]$codes$nuts
#> [1] "TLI43"
#>
#> [[9]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[9]]$codes$msoa
#> [1] "E02000576"
#>
#> [[9]]$codes$lau2
#> [1] "E09000019"
#>
#> [[9]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[9]]$distance
#> [1] 60.00648
#>
#>
#> [[10]]
#> [[10]]$postcode
#> [1] "EC1Y 8TE"
#>
#> [[10]]$quality
#> [1] 1
#>
#> [[10]]$eastings
#> [1] 532505
#>
#> [[10]]$northings
#> [1] 182072
#>
#> [[10]]$country
#> [1] "England"
#>
#> [[10]]$nhs_ha
#> [1] "London"
#>
#> [[10]]$longitude
#> [1] -0.091479
#>
#> [[10]]$latitude
#> [1] 51.52203
#>
#> [[10]]$european_electoral_region
#> [1] "London"
#>
#> [[10]]$primary_care_trust
#> [1] "Islington"
#>
#> [[10]]$region
#> [1] "London"
#>
#> [[10]]$lsoa
#> [1] "Islington 023D"
#>
#> [[10]]$msoa
#> [1] "Islington 023"
#>
#> [[10]]$incode
#> [1] "8TE"
#>
#> [[10]]$outcode
#> [1] "EC1Y"
#>
#> [[10]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[10]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[10]]$admin_district
#> [1] "Islington"
#>
#> [[10]]$parish
#> [1] "Islington, unparished area"
#>
#> [[10]]$admin_county
#> NULL
#>
#> [[10]]$date_of_introduction
#> [1] "198402"
#>
#> [[10]]$admin_ward
#> [1] "Bunhill"
#>
#> [[10]]$ced
#> NULL
#>
#> [[10]]$ccg
#> [1] "NHS North Central London"
#>
#> [[10]]$nuts
#> [1] "Islington"
#>
#> [[10]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[10]]$codes
#> [[10]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[10]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[10]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[10]]$codes$parish
#> [1] "E43000209"
#>
#> [[10]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[10]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[10]]$codes$ccg
#> [1] "E38000240"
#>
#> [[10]]$codes$ccg_id
#> [1] "93C"
#>
#> [[10]]$codes$ced
#> [1] "E99999999"
#>
#> [[10]]$codes$nuts
#> [1] "TLI43"
#>
#> [[10]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[10]]$codes$msoa
#> [1] "E02000576"
#>
#> [[10]]$codes$lau2
#> [1] "E09000019"
#>
#> [[10]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[10]]$distance
#> [1] 67.10526
#>
#>
#> [[11]]
#> [[11]]$postcode
#> [1] "EC1Y 8LZ"
#>
#> [[11]]$quality
#> [1] 1
#>
#> [[11]]$eastings
#> [1] 532600
#>
#> [[11]]$northings
#> [1] 182163
#>
#> [[11]]$country
#> [1] "England"
#>
#> [[11]]$nhs_ha
#> [1] "London"
#>
#> [[11]]$longitude
#> [1] -0.090076
#>
#> [[11]]$latitude
#> [1] 51.52283
#>
#> [[11]]$european_electoral_region
#> [1] "London"
#>
#> [[11]]$primary_care_trust
#> [1] "Islington"
#>
#> [[11]]$region
#> [1] "London"
#>
#> [[11]]$lsoa
#> [1] "Islington 023D"
#>
#> [[11]]$msoa
#> [1] "Islington 023"
#>
#> [[11]]$incode
#> [1] "8LZ"
#>
#> [[11]]$outcode
#> [1] "EC1Y"
#>
#> [[11]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[11]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[11]]$admin_district
#> [1] "Islington"
#>
#> [[11]]$parish
#> [1] "Islington, unparished area"
#>
#> [[11]]$admin_county
#> NULL
#>
#> [[11]]$date_of_introduction
#> [1] "202211"
#>
#> [[11]]$admin_ward
#> [1] "Bunhill"
#>
#> [[11]]$ced
#> NULL
#>
#> [[11]]$ccg
#> [1] "NHS North Central London"
#>
#> [[11]]$nuts
#> [1] "Islington"
#>
#> [[11]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[11]]$codes
#> [[11]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[11]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[11]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[11]]$codes$parish
#> [1] "E43000209"
#>
#> [[11]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[11]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[11]]$codes$ccg
#> [1] "E38000240"
#>
#> [[11]]$codes$ccg_id
#> [1] "93C"
#>
#> [[11]]$codes$ced
#> [1] "E99999999"
#>
#> [[11]]$codes$nuts
#> [1] "TLI43"
#>
#> [[11]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[11]]$codes$msoa
#> [1] "E02000576"
#>
#> [[11]]$codes$lau2
#> [1] "E09000019"
#>
#> [[11]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[11]]$distance
#> [1] 67.70669
#>
#>
#> [[12]]
#> [[12]]$postcode
#> [1] "EC1Y 8PD"
#>
#> [[12]]$quality
#> [1] 1
#>
#> [[12]]$eastings
#> [1] 532529
#>
#> [[12]]$northings
#> [1] 182197
#>
#> [[12]]$country
#> [1] "England"
#>
#> [[12]]$nhs_ha
#> [1] "London"
#>
#> [[12]]$longitude
#> [1] -0.091086
#>
#> [[12]]$latitude
#> [1] 51.52315
#>
#> [[12]]$european_electoral_region
#> [1] "London"
#>
#> [[12]]$primary_care_trust
#> [1] "Islington"
#>
#> [[12]]$region
#> [1] "London"
#>
#> [[12]]$lsoa
#> [1] "Islington 023D"
#>
#> [[12]]$msoa
#> [1] "Islington 023"
#>
#> [[12]]$incode
#> [1] "8PD"
#>
#> [[12]]$outcode
#> [1] "EC1Y"
#>
#> [[12]]$parliamentary_constituency
#> [1] "Islington South and Finsbury"
#>
#> [[12]]$parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#>
#> [[12]]$admin_district
#> [1] "Islington"
#>
#> [[12]]$parish
#> [1] "Islington, unparished area"
#>
#> [[12]]$admin_county
#> NULL
#>
#> [[12]]$date_of_introduction
#> [1] "198001"
#>
#> [[12]]$admin_ward
#> [1] "Bunhill"
#>
#> [[12]]$ced
#> NULL
#>
#> [[12]]$ccg
#> [1] "NHS North Central London"
#>
#> [[12]]$nuts
#> [1] "Islington"
#>
#> [[12]]$pfa
#> [1] "Metropolitan Police"
#>
#> [[12]]$codes
#> [[12]]$codes$admin_district
#> [1] "E09000019"
#>
#> [[12]]$codes$admin_county
#> [1] "E99999999"
#>
#> [[12]]$codes$admin_ward
#> [1] "E05013699"
#>
#> [[12]]$codes$parish
#> [1] "E43000209"
#>
#> [[12]]$codes$parliamentary_constituency
#> [1] "E14001306"
#>
#> [[12]]$codes$parliamentary_constituency_2024
#> [1] "E14001306"
#>
#> [[12]]$codes$ccg
#> [1] "E38000240"
#>
#> [[12]]$codes$ccg_id
#> [1] "93C"
#>
#> [[12]]$codes$ced
#> [1] "E99999999"
#>
#> [[12]]$codes$nuts
#> [1] "TLI43"
#>
#> [[12]]$codes$lsoa
#> [1] "E01002704"
#>
#> [[12]]$codes$msoa
#> [1] "E02000576"
#>
#> [[12]]$codes$lau2
#> [1] "E09000019"
#>
#> [[12]]$codes$pfa
#> [1] "E23000001"
#>
#>
#> [[12]]$distance
#> [1] 70.46188
#>
#>
# }