View source: R/mkdeFunctions.R
setMaximumZfromConstant | R Documentation |
Set the upper bounds in the z-dimension for each location in the x and y dimensions to a constant value.
setMaximumZfromConstant(mkde.obj, val)
mkde.obj |
2D or 3D MKDE object created with
|
val |
The value at which the upper bound should be set for all locations in the x and y dimensions. |
Obviously, the upper bound must be greater than the lower bound.
An updated MKDE list object is returned.
Jeff A. Tracey, PhD
USGS Western Ecological Research Center, San Diego Field Station
jatracey@usgs.gov
James Sheppard, PhD
San Diego Zoo Institute for Conservation Research
jsheppard@sandiegozoo.org
library(terra)
fpath <- system.file("extdata", "dugongdem.RDS", package="mkde")
dugongdem <- terra::readRDS(fpath)
cell.sz <- mean(res(dugongdem))
ext <- ext(dugongdem)
nx <- ncol(dugongdem)
ny <- nrow(dugongdem)
mkde.obj <- initializeMKDE3D(ext$xmin, cell.sz, nx, ext$ymin, cell.sz,
ny, min(values(dugongdem), na.rm=TRUE), 50.0, 15)
mkde.obj <- setMaximumZfromConstant(mkde.obj, 100.0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.