R/fct_switch_band.R

Defines functions switch_band

Documented in switch_band

#' switch_band
#'
#' @param x 
#'
#' @return
#' @export
#'
switch_band <- function(x) {
  out <- switch(x,
                b = "B11",
                c = "B12",
                paste0("B", x)
  )
}
pobsteta/shinyCNES documentation built on April 28, 2021, 9:43 a.m.