R/ifelse.R

Defines functions .ifel

# 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)
	}
#)

Try the raster package in your browser

Any scripts or data that you put into this service are public.

raster documentation built on Oct. 14, 2023, 5:07 p.m.