#' Compute a remote sensing index from a time series of Sentinel-2 images
#'
#' \code{senFolderToVar} computes a remote sensing index from the spectral bands
#' of a time series of Sentinel-2 images. The images are specified by the path to
#' the folder that stores the imagery (resulting from the \code{\link{senMosaic}}
#' function). The function returns a \code{RasterStack} with a time series of
#' images of the remote sensing index.
#'
#' The function requires the definition of the \code{src} and \code{fun}
#' arguments. The \code{src} is usually the path resulting from
#' \code{\link{senMosaic}}. The \code{fun} argument can be any function from
#' this package beginning with “var” (\code{\link{varNDVI}},
#' \code{\link{varEVI}}, etc.). Custom functions can also be implemented.
#' If \code{fun = varRGB}, then the argument \code{getStack} must be equal to
#' \code{FALSE} and the red-green-blue (RGB) images must be imported afterwards.
#' Caution! It is mandatory to use level-2 products to get accurate derived variables.
#'
#' @param src the path to the folder with the Sentinel-2 multispectral images.
#' @param AppRoot directory where the outcoming time series is saved.
#' @param fun a \code{function} that computes the remote sensing index.
#' @param getStack logical argument. If \code{TRUE}, returns the time series of
#' images as a \code{RasterStack}, otherwise the images are saved in the Hard
#' Drive Device (HDD).
#' @param overwrite logical argument. If \code{TRUE}, overwrites the existing
#' images with the same name.
#' @param verbose logical argument. If \code{TRUE}, the function prints the
#' running steps and warnings.
#' @param resbands the resolution of the image being used to compute index,
#' when the imagery comes from the Senintel-2 "\code{S2MSI2A}" product. By
#' default, all resolutions (10m, 20m, and 60m) are used.
#' @param ... arguments for nested functions.
#' \itemize{
#' \item \code{dates} a vector with the capturing dates being considered
#' for mosaicking. If not supplied, all dates are mosaicked.
#' }
#' @return this function does not return anything, unless \code{getStack = TRUE}
#' which then returns a \code{RasterStack} with the time series of with the
#' index.
#' @examples
#' \dontrun{
#' # load a spatial polygon object of Navarre
#' data(ex.navarre)
#' # main output directory
#' wdir <- file.path(tempdir(),"Path_for_downloading_folder")
#' print(wdir)
#' # download Sentinel-2 images
#' senDownSearch(startDate = as.Date("2018210","%Y%j"),
#' endDate = as.Date("2018218","%Y%j"),
#' platform = "Sentinel-2",
#' extent = ex.navarre,
#' product = "S2MSI1C",
#' pathrow = c("R094"),
#' username = "username",
#' password = "password",
#' AppRoot = wdir)
#' # folder with the unzipped images from Sentinel-2
#' wdir.sen <- file.path(wdir,"Sentinel-2")
#' wdir.sen.unzip <- file.path(wdir.sen, "unzip")
#' # mosaic the Sentinel-2 images
#' senMosaic(wdir.sen.unzip,
#' AppRoot = wdir.sen,
#' gutils = TRUE,
#' out.name = "Navarre")
#' # path to the folder with the mosaicked images
#' wdir.sen.navarre <- file.path(wdir.sen, "Navarre")
#' wdir.sen.var <- file.path(wdir.sen.navarre, "Navarre_Variables")
#' dir.create(wdir.sen.var)
#' # generate EVI images of Navarre
#' senFolderToVar(wdir.sen.navarre,
#' fun = varEVI,
#' resbands = c("60m"),
#' AppRoot = wdir.sen.var)
#'
#' files.sen.evi <- list.files(file.path(wdir.sen.var,"EVI"),
#' pattern = "\\.tif$",
#' full.names = TRUE,
#' recursive = TRUE)
#'
#' img.sen.evi <- lapply(files.sen.evi, raster)
#' spplot(img.sen.evi[[1]])
#' }
senFolderToVar<-function(src,AppRoot,fun,getStack=FALSE,overwrite=FALSE,verbose=FALSE,resbands=c("10m","20m","60m"),...){
function.arg<-list(...)
vartype<-gsub("var","",as.character(match.call()[c("fun")]))
src<-pathWinLx(src)
AppRoot<-pathWinLx(AppRoot)
AppRoot<-file.path(AppRoot,vartype)
dir.create(AppRoot,showWarnings = FALSE,recursive=TRUE)
if(verbose){message(paste0("var type: ",vartype))}
resbands=paste0("_",resbands)
sen.list<-list.files(src,full.names = TRUE)
dates<-genGetDates(sen.list)
if("dates"%in%names(function.arg)){
sen.list<-sen.list[dates%in%function.arg$dates]
}
if(length(sen.list)==0)stop(paste0("No images found in ",src," path."))
rstack<-NULL
result<-NULL
for(imgfd in sen.list){
message(paste0("Calculating ",vartype," at date ",genGetDates(imgfd),"."))
senbands<-getRGISToolsOpt("SEN2BANDS")
sen.img<-list.files(imgfd,full.names = TRUE,pattern = "\\.tif$")
if(length(sen.img)==0){
message(paste0("Images not found in ",imgfd))
next
}
#check if there are S2MSI2A images
cres<-lapply(resbands,grepl,sen.img)
cres<-unlist(lapply(cres,function(x){if(sum(x)>0){return(TRUE)}else{return(FALSE)}}))
if(sum(cres)>0){
if(verbose){message("Multiple resolution layers, getStack not supported.")}
getStack=FALSE
resbands<-resbands[cres]
}else{
resbands=c("")
}
for(resb in resbands){
out.file.name<-paste0(AppRoot,"/",vartype,"_",format(genGetDates(imgfd),"%Y%j"),resb,".tif")
if(overwrite|(!file.exists(out.file.name))){
funString<-"result<-fun("
#band load and asignation
funargs<-formalArgs(fun)
noargs=FALSE
for(arg in funargs){
band<-senbands[names(senbands)%in%arg]
if(length(band)==0)
next
l.img<-sen.img[grepl(paste0(band,resb,".tif"),sen.img)]
if(length(l.img)==0&arg=='nir'){
band<-senbands[names(senbands)%in%'narrownir']
l.img<-sen.img[grepl(paste0(band,resb,".tif"),sen.img)]
}
if(verbose){message(paste0("Loading ",l.img,"..."))}
if(length(l.img)==0){
warning(paste0("Image not found for ",resb," and ",arg))
noargs=TRUE
break
}
eval(parse( text=paste0(arg,"<-read_stars('",l.img,"')") ))
funString<-paste0(funString,arg,"=",arg,",")
}
if(noargs){
noargs=FALSE
next
}
# arguments asignation
arguments<-as.list(match.call())
arguments<-arguments[names(arguments)%in%funargs&
(!names(arguments)%in%names(senbands))]
for(arg in names(arguments)){
funString<-paste0(funString,arg,"=function.arg$",arg,",")
}
# complete the function
funString<-paste0(substr(funString,1,nchar(funString)-1),")")
if(verbose){message(paste0("Running function ",funString,"..."))}
eval(parse(text=funString))
if(getStack){
if(is.null(rstack)){
names(result)<-paste0(vartype,"_",format(genGetDates(imgfd),"%Y%j"))
rstack<-result
}else{
result<-extend(result,rstack)
rstack<-extend(rstack,result)
names(result)<-paste0(vartype,"_",format(genGetDates(imgfd),"%Y%j"))
rstack<-addLayer(rstack,result)
}
}else{
write_stars(result,out.file.name)
}
}else{
message(paste0("File exists!\nFile: ",out.file.name))
}
}
}
if(getStack){
return(rstack)
}else{
message(paste0(vartype," images saved in HDD."))
message(paste0("File dir: ",AppRoot))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.