R/AS1sentinel.R

Defines functions AS1sentinel

Documented in AS1sentinel

#FunciĆ³n AS1 para Sentinel 2
AS1sentinel <- function(NIR, SWIR, SWIR2){
  AS1Index <- overlay(NIR, SWIR, SWIR2, fun=function(x,y,z){
    a <- (sqrt((1.6137-0.835)^2+(y-x)^2))
    b <- (sqrt((1.6137-2.202)^2+(y-z)^2))
    c <- (sqrt((2.202-0.835)^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(AS1Index)
}
klauswiese/AngleIndexes documentation built on Oct. 24, 2021, 2:41 p.m.