Three-dimensional focal values
focal3D.Rd
Calculate focal ("moving window") values for the three-dimensional neighborhood (window) of focal cells. See focal
for two-dimensional focal computation.
Usage
# S4 method for class 'SpatRaster'
focal3D(x, w=3, fun=mean, ..., na.policy="all", fillvalue=NA, pad=FALSE,
padvalue=fillvalue, expand=FALSE, silent=TRUE,
filename="", overwrite=FALSE, wopt=list())
Arguments
- x
SpatRaster
- w
window. A rectangular prism (cuboid) defined by three numbers or by a three-dimensional array. The values are used as weights, and are usually zero, one, NA, or fractions. The window used must have odd dimensions. If you desire to use even sides, you can use an array, and pad the values with rows and/or columns that contain only
NA
s.- fun
function that takes multiple numbers, and returns one or multiple numbers for each focal area. For example mean, modal, min or max
- ...
additional arguments passed to
fun
such asna.rm
- na.policy
character. Can be used to determine the cells of
x
, in the central layer, for which focal values should be computed. Must be one of "all" (compute for all cells), "only" (only for cells that areNA
) or "omit" (skip cells that areNA
). Note that the value of this argument does not affect which cells around each focal cell are included in the computations (usena.rm=TRUE
to ignore cells that areNA
in the computation of the focal value)- fillvalue
numeric. The value of the cells in the virtual rows and columns outside of the raster
- pad
logical. Add virtual layers before the first and after the last layer
- padvalue
numeric. The value of the cells in the virtual layers
- expand
logical. Add virtual layers before the first or after the last layer that are the same as the first or last layers. If
TRUE
, argumentspad
andpadvalue
are ignored- silent
logical. If
TRUE
error messages are printed that may occur when tryingfun
to determine the length of the returned value. This can be useful in debugging a function passed tofun
that does not work- filename
character. Output filename
- overwrite
logical. If
TRUE
,filename
is overwritten- wopt
additional arguments for writing files as in
writeRaster