R/deprecated.R

Defines functions importRRD

Documented in importRRD

#' Deprecated functions.
#' 
#' @inheritParams read_rrd
#' @inheritParams read_rra
#' @export
importRRD <- function(filename, cf = NULL, start = NULL, end = NULL, step = NULL){
  if (any(!is.null(cf), !is.null(start), !is.null(end), !is.null(step))) {
    .Deprecated(read_rra)
  } else {
    .Deprecated(read_rrd)
  }
}
andrie/rrd documentation built on Aug. 21, 2022, 2:32 p.m.