R/browse.R

Defines functions uktrans_browse ukppd_browse ukhp_browse uklr_browse

Documented in ukhp_browse uklr_browse ukppd_browse uktrans_browse

#' Quickly browse to Land Registry's webpage
#'
#' These functions take you to land registry's webpages and return the URL invisibly.
#'
#' @export
#' @examples
#' uklr_browse()
#'
uklr_browse <- function() {
  view_url("http://landregistry.data.gov.uk")
}

#' @rdname uklr_browse
#' @export
ukhp_browse <- function() {
  view_url("http://landregistry.data.gov.uk/def/ukhpi")
}

#' @rdname uklr_browse
#' @export
ukppd_browse <- function() {
  view_url("http://landregistry.data.gov.uk/def/ppi")
}

#' @rdname uklr_browse
#' @export
uktrans_browse <- function() {
  view_url("http://landregistry.data.gov.uk/def/trans")
}

Try the uklr package in your browser

Any scripts or data that you put into this service are public.

uklr documentation built on May 25, 2021, 1:06 a.m.