PostcodesioR icon indicating copy to clipboard operation
PostcodesioR copied to clipboard

API wrapper around postcodes.io - free UK postcode lookup and geocoder

Results 4 PostcodesioR issues
Sort by recently updated
recently updated
newest added

`bulk_postcode_lookup()` used to only work accept this syntax: ```r bulk_postcode_lookup(list(postcodes = c("PR30SG", "M456GN", "EX165BL")) ``` But now it also supports this syntax: ```r ## Postcodes can be provided as individual...

`bulk_postcode_lookup()` requires `postcodes` to be a length-one list that contains only a character vector, as exemplified in the function's help page: ```r pc_list

The help file for `bulk_postcodes_lookup()` says that spaces are ignored. Spaces are ignored for `postcode_lookup()`, but not for `bulk_postcode_lookup()`. ``` r library(PostcodesioR) postcode_lookup("S7 1FL") #> postcode quality eastings northings country...

# What When user follows the vignette for `bulk_postcode_lookup`, `Bad Request (HTTP 400)` is returned, which is unexpected. # Steps to reproduce 1. Install `PostcodesioR` 2. Load `library(PostcodesioR)` 3. Follow...