R/ARE3sentinel.R

Defines functions ARE3sentinel

Documented in ARE3sentinel

#FunciĆ³n ARE3 para Sentinel 2
ARE3sentinel <- function(RedEdge2, RedEdge3, NIR){
  ARE3Index <- overlay(RedEdge2, RedEdge3, NIR, fun=function(x,y,z){
    a <- (sqrt((0.783-0.740)^2+(y-x)^2))
    b <- (sqrt((0.842-0.783)^2+(z-y)^2))
    c <- (sqrt((0.842-0.740)^2+(z-x)^2))
    d <- (a^2+b^2-c^2)/(2*a*b)
    d2 <- ifelse(d > 1, 1, ifelse(d < -1, -1, d))
    ind <- acos(d2)
    return(ind)
  })
  return(ARE3Index)
}
klauswiese/AngleIndexes documentation built on Oct. 24, 2021, 2:41 p.m.