R/EVI.R

Defines functions EVI

Documented in EVI

#' @export
EVI <- function(NIR, RED, BLUE){
  EVI = 2.5*((NIR-RED)/(NIR+(6*RED)-(7.5*BLUE)+1))
  return(EVI)
}

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.