R/BSI.R

Defines functions BSI

Documented in BSI

#' @export
BSI <- function(SWIR, RED, NIR, BLUE){
  BSI = ((SWIR+RED)-(NIR+BLUE))/((SWIR+RED)+(NIR+BLUE))
  return(BSI)
}

Try the VegSpecIndex package in your browser

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

VegSpecIndex documentation built on April 4, 2025, 4:28 a.m.