R/PVI.R

Defines functions PVI

Documented in PVI

#' @export
PVI <- function(NIR, RED, s, a, b){
  PVI = ((b*NIR)-(s*b*RED)-a)/sqrt(a^2+1)
  return(PVI)
}

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.