Nothing
#' Fetch Westminster parliamentary constituencies
#'
#' Fetch a data frame of all Westminster Parliamentary Constituencies for a
#' given year and country based on the dfeR::wd_pcon_lad_la_rgn_ctry file
#'
#' @param year year to filter the locations to, default is "All",
#' options of 2017, 2019, 2020, 2021, 2022", 2023, 2024
#' @param countries vector of desired countries to filter the locations to,
#' default is "All", or can be a vector with options of "England", "Scotland",
#' "Wales" or "Northern Ireland"
#'
#' @return data frame of unique location names and codes
#' @export
#'
#' @name fetch
#' @examples
#'
#' # Using head() to show only top 5 rows for examples
#' head(fetch_wards())
#'
#' head(fetch_pcons())
#'
#' head(fetch_pcons(2023))
#'
#' head(fetch_pcons(countries = "Scotland"))
#'
#' head(fetch_pcons(year = 2023, countries = c("England", "Wales")))
#'
#' fetch_lads(2024, "Wales")
#'
#' fetch_las(2022, "Northern Ireland")
#'
#' # The following have no specific years available and return all values
#' fetch_regions()
#' fetch_countries()
fetch_pcons <- function(year = "All", countries = "All") {
# Helper function to check the inputs are valid
check_fetch_location_inputs(year, countries)
# Helper function to filter to locations we want
output <- fetch_locations(
lookup_data = dfeR::wd_pcon_lad_la_rgn_ctry,
cols = c("pcon_code", "pcon_name"),
year = year,
countries = countries
)
return(output)
}
#' Fetch local authority districts
#'
#' @inheritParams fetch
#'
#' @family fetch_locations
#' @return data frame of unique location names and codes
#' @export
#'
#' @inherit fetch examples
fetch_lads <- function(year = "All", countries = "All") {
# Helper function to check the inputs are valid
check_fetch_location_inputs(year, countries)
# Helper function to filter to locations we want
output <- fetch_locations(
lookup_data = dfeR::wd_pcon_lad_la_rgn_ctry,
cols = c("lad_code", "lad_name"),
year = year,
countries = countries
)
return(output)
}
#' Fetch local authorities
#'
#' @inheritParams fetch
#'
#' @family fetch_locations
#' @return data frame of unique location names and codes
#' @export
#'
#' @inherit fetch examples
fetch_las <- function(year = "All", countries = "All") {
# Helper function to check the inputs are valid
check_fetch_location_inputs(year, countries)
# Helper function to filter to locations we want
output <- fetch_locations(
lookup_data = dfeR::wd_pcon_lad_la_rgn_ctry,
cols = c("new_la_code", "la_name"),
year = year,
countries = countries
)
return(output)
}
#' Fetch wards
#'
#' @inheritParams fetch
#'
#' @family fetch_locations
#' @return data frame of unique location names and codes
#' @export
#'
#' @inherit fetch examples
fetch_wards <- function(year = "All", countries = "All") {
# Helper function to check the inputs are valid
check_fetch_location_inputs(year, countries)
# Helper function to filter to locations we want
output <- fetch_locations(
lookup_data = dfeR::wd_pcon_lad_la_rgn_ctry,
cols = c("ward_code", "ward_name"),
year = year,
countries = countries
)
return(output)
}
#' Fetch regions
#'
#' @family fetch_locations
#' @return data frame of unique location names and codes
#' @export
#'
#' @inherit fetch examples
fetch_regions <- function() {
dfeR::regions
}
#' Fetch countries
#'
#' @family fetch_locations
#' @return data frame of unique location names and codes
#' @export
#'
#' @inherit fetch examples
fetch_countries <- function() {
dfeR::countries
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.