R/deprecations.R

Defines functions obs_lines adm_lines mbrest

Documented in adm_lines mbrest obs_lines

#' Deprecated functions
#'
#' @name deprecations
#' @param ... passed to the corresponding function
#' @details
#' * mbrest() is now [mapbayest()]
#' * adm_lines() is now [adm_rows()]
#' * obs_lines() is now [obs_rows()]
NULL

#' @export
#' @rdname deprecations
mbrest <- function(...){
  .Deprecated("mapbayest")
  mapbayest(...)
}

#' @export
#' @rdname deprecations
adm_lines <- function(...){
  .Deprecated("adm_rows")
  adm_rows(...)
}

#' @export
#' @rdname deprecations
obs_lines <- function(...){
  .Deprecated("obs_rows")
  obs_rows(...)
}

Try the mapbayr package in your browser

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

mapbayr documentation built on July 26, 2023, 5:16 p.m.