Skip to contents

Returns a random postcode and all available data for that postcode.

Usage

random_postcode(outcode = NULL)

Arguments

outcode

A string. Filters random postcodes by outcode. Returns null if invalid outcode. Optional.

Value

A list with a random postcode with corresponding characteristics.

See also

postcode_lookup for documentation.

Examples

# \donttest{
random_postcode()
#> $postcode
#> [1] "AB55 6RU"
#> 
#> $quality
#> [1] 1
#> 
#> $eastings
#> [1] 341526
#> 
#> $northings
#> [1] 850923
#> 
#> $country
#> [1] "Scotland"
#> 
#> $nhs_ha
#> [1] "Grampian"
#> 
#> $longitude
#> [1] -2.978531
#> 
#> $latitude
#> [1] 57.54461
#> 
#> $european_electoral_region
#> [1] "Scotland"
#> 
#> $primary_care_trust
#> [1] "Moray Community Health and Social Care Partnership"
#> 
#> $region
#> NULL
#> 
#> $lsoa
#> [1] "Rural Keith and Strathisla - 02"
#> 
#> $msoa
#> [1] "Rural Keith and Strathisla"
#> 
#> $incode
#> [1] "6RU"
#> 
#> $outcode
#> [1] "AB55"
#> 
#> $parliamentary_constituency
#> [1] "Aberdeenshire North and Moray East"
#> 
#> $parliamentary_constituency_2024
#> [1] "Aberdeenshire North and Moray East"
#> 
#> $admin_district
#> [1] "Moray"
#> 
#> $parish
#> NULL
#> 
#> $admin_county
#> NULL
#> 
#> $date_of_introduction
#> [1] "199606"
#> 
#> $admin_ward
#> [1] "Keith and Cullen"
#> 
#> $ced
#> NULL
#> 
#> $ccg
#> [1] "Moray Community Health & Social Care Partnership"
#> 
#> $nuts
#> [1] "Moray"
#> 
#> $pfa
#> [1] "Scotland"
#> 
#> $nhs_region
#> NULL
#> 
#> $ttwa
#> [1] "Elgin"
#> 
#> $national_park
#> NULL
#> 
#> $bua
#> NULL
#> 
#> $icb
#> NULL
#> 
#> $cancer_alliance
#> NULL
#> 
#> $lsoa11
#> [1] "Rural Keith and Strathisla - 02"
#> 
#> $msoa11
#> [1] "Rural Keith and Strathisla"
#> 
#> $lsoa21
#> [1] "Rural Keith and Strathisla - 02"
#> 
#> $msoa21
#> [1] "Rural Keith and Strathisla"
#> 
#> $oa21
#> [1] "S00166246"
#> 
#> $ruc11
#> [1] "(Scotland) Accessible Rural"
#> 
#> $ruc21
#> [1] "Accessible Rural"
#> 
#> $lep1
#> NULL
#> 
#> $lep2
#> NULL
#> 
#> $codes
#> $codes$admin_district
#> [1] "S12000020"
#> 
#> $codes$admin_county
#> [1] "S99999999"
#> 
#> $codes$admin_ward
#> [1] "S13003025"
#> 
#> $codes$parish
#> [1] "S99999999"
#> 
#> $codes$parliamentary_constituency
#> [1] "S14000062"
#> 
#> $codes$parliamentary_constituency_2024
#> [1] "S14000062"
#> 
#> $codes$ccg
#> [1] "S03000014"
#> 
#> $codes$ccg_id
#> [1] "014"
#> 
#> $codes$ced
#> [1] "S99999999"
#> 
#> $codes$nuts
#> [1] "TLM20"
#> 
#> $codes$lsoa
#> [1] "S01018256"
#> 
#> $codes$msoa
#> [1] "S02003382"
#> 
#> $codes$lau2
#> [1] "S30000056"
#> 
#> $codes$pfa
#> [1] "S23000009"
#> 
#> $codes$nhs_region
#> [1] "S99999999"
#> 
#> $codes$ttwa
#> [1] "S22000060"
#> 
#> $codes$national_park
#> [1] "S99999999"
#> 
#> $codes$bua
#> [1] "S99999999"
#> 
#> $codes$icb
#> [1] "S99999999"
#> 
#> $codes$cancer_alliance
#> [1] "S99999999"
#> 
#> $codes$lsoa11
#> [1] "S01011056"
#> 
#> $codes$msoa11
#> [1] "S02002075"
#> 
#> $codes$lsoa21
#> [1] "S01018256"
#> 
#> $codes$msoa21
#> [1] "S02003382"
#> 
#> $codes$oa21
#> [1] "S00166246"
#> 
#> $codes$ruc11
#> [1] "6"
#> 
#> $codes$ruc21
#> [1] "5"
#> 
#> $codes$lep1
#> [1] "S99999999"
#> 
#> $codes$lep2
#> NULL
#> 
#> 
random_postcode("N1")
#> $postcode
#> [1] "N1 1FL"
#> 
#> $quality
#> [1] 1
#> 
#> $eastings
#> [1] 531630
#> 
#> $northings
#> [1] 183943
#> 
#> $country
#> [1] "England"
#> 
#> $nhs_ha
#> [1] "London"
#> 
#> $longitude
#> [1] -0.103385
#> 
#> $latitude
#> [1] 51.53905
#> 
#> $european_electoral_region
#> [1] "London"
#> 
#> $primary_care_trust
#> [1] "Islington"
#> 
#> $region
#> [1] "London"
#> 
#> $lsoa
#> [1] "Islington 020B"
#> 
#> $msoa
#> [1] "Islington 020"
#> 
#> $incode
#> [1] "1FL"
#> 
#> $outcode
#> [1] "N1"
#> 
#> $parliamentary_constituency
#> [1] "Islington South and Finsbury"
#> 
#> $parliamentary_constituency_2024
#> [1] "Islington South and Finsbury"
#> 
#> $admin_district
#> [1] "Islington"
#> 
#> $parish
#> [1] "Islington, unparished area"
#> 
#> $admin_county
#> NULL
#> 
#> $date_of_introduction
#> [1] "200703"
#> 
#> $admin_ward
#> [1] "St Mary's & St James'"
#> 
#> $ced
#> NULL
#> 
#> $ccg
#> [1] "NHS North Central London"
#> 
#> $nuts
#> [1] "Islington"
#> 
#> $pfa
#> [1] "Metropolitan Police"
#> 
#> $nhs_region
#> [1] "London"
#> 
#> $ttwa
#> [1] "London"
#> 
#> $national_park
#> [1] "England (non-National Park)"
#> 
#> $bua
#> [1] "Islington"
#> 
#> $icb
#> [1] "NHS North Central London Integrated Care Board"
#> 
#> $cancer_alliance
#> [1] "North Central London"
#> 
#> $lsoa11
#> [1] "Islington 020B"
#> 
#> $msoa11
#> [1] "Islington 020"
#> 
#> $lsoa21
#> [1] "Islington 020B"
#> 
#> $msoa21
#> [1] "Islington 020"
#> 
#> $oa21
#> [1] "E00013926"
#> 
#> $ruc11
#> [1] "(England/Wales) Urban major conurbation"
#> 
#> $ruc21
#> [1] "Urban: Nearer to a major town or city"
#> 
#> $lep1
#> [1] "London"
#> 
#> $lep2
#> NULL
#> 
#> $codes
#> $codes$admin_district
#> [1] "E09000019"
#> 
#> $codes$admin_county
#> [1] "E99999999"
#> 
#> $codes$admin_ward
#> [1] "E05013710"
#> 
#> $codes$parish
#> [1] "E43000209"
#> 
#> $codes$parliamentary_constituency
#> [1] "E14001306"
#> 
#> $codes$parliamentary_constituency_2024
#> [1] "E14001306"
#> 
#> $codes$ccg
#> [1] "E38000240"
#> 
#> $codes$ccg_id
#> [1] "93C"
#> 
#> $codes$ced
#> [1] "E99999999"
#> 
#> $codes$nuts
#> [1] "TLI43"
#> 
#> $codes$lsoa
#> [1] "E01002794"
#> 
#> $codes$msoa
#> [1] "E02000573"
#> 
#> $codes$lau2
#> [1] "E09000019"
#> 
#> $codes$pfa
#> [1] "E23000001"
#> 
#> $codes$nhs_region
#> [1] "E40000003"
#> 
#> $codes$ttwa
#> [1] "E30000234"
#> 
#> $codes$national_park
#> [1] "E65000001"
#> 
#> $codes$bua
#> [1] "E63011980"
#> 
#> $codes$icb
#> [1] "E54000028"
#> 
#> $codes$cancer_alliance
#> [1] "E56000027"
#> 
#> $codes$lsoa11
#> [1] "E01002794"
#> 
#> $codes$msoa11
#> [1] "E02000573"
#> 
#> $codes$lsoa21
#> [1] "E01002794"
#> 
#> $codes$msoa21
#> [1] "E02000573"
#> 
#> $codes$oa21
#> [1] "E00013926"
#> 
#> $codes$ruc11
#> [1] "A1"
#> 
#> $codes$ruc21
#> [1] "UN1"
#> 
#> $codes$lep1
#> [1] "E37000051"
#> 
#> $codes$lep2
#> NULL
#> 
#> 
# }