Nothing
# Author: Robert J. Hijmans
# Date : May 2019
# Version 1.0
# Licence GPL v3
#setMethod("ifel", signature(test="Raster", yes="ANY", no="ANY"),
.ifel <- function(test, yes, no, filename="", ...) {
if (!inherits(no, "Raster")) {
stopifnot(is.numeric(no))
if (length(no) > 1) warning('only the first element of "no" is used')
no <- reclassify(test, rbind(c(0,no[1]), c(1,NA)))
} else {
no <- mask(no, test, maskvalue=TRUE)
}
if (!inherits(yes, "Raster")) {
stopifnot(is.numeric(yes))
if (length(yes) > 1) warning('only the first element of "yes" is used')
yes <- reclassify(test, rbind(c(1,yes[1]), c(0,NA)))
}
cover(no, yes, filename=filename)
}
#)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.