move (version 3.1.0)

outerProbability: Calculates the probabilities at the edges of a raster

Description

The outerProbability method calculates the summed probability of the cells at the border of a raster

Usage

# S4 method for RasterLayer
outerProbability(raster,border,...)
  # S4 method for DBBMMStack
outerProbability(raster,border,...)

Arguments

raster

a RasterLayer, DBBMM, DBBMMStack, dynBGB or .UD object

border

numeric from 0 to 1; ratio of the number of columns at the border relative to the whole raster from which the probabilities should be summed up; default is 10% (0.1)

...

Currently not implemented

Value

numeric value for a single DBBMM or dynBGB object, or a list of numeric values for a DBBMMStack

Details

The function returns the summed probability at the border (e.g. the outer 10% of the cells) of a raster. This value can be used as an indicator whether the extent of the used raster is to small for the UD calculation and therefore too much probabilities are not calculated because they are outside the raster.

Examples

Run this code
# NOT RUN {
data(leroydbbmm)
#calculate the probabilities of 20% of the raster at the border from a DBBMM
outerProbability(leroydbbmm, border=.2)

#calculate the probabilities of 50% of the raster at the border from a DBBMMStack
outerProbability(leroydbbmm, border=.5)
# }

Run the code above in your browser using DataLab