Learn R Programming

mkde (version 0.1)

setMaximumZfromConstant: Initialize maximum allowable z-axis coordinates to a constant value.

Description

Set the upper bounds in the z-dimension for each location in the x and y dimensions to a constant value.

Usage

setMaximumZfromConstant(mkde.obj, val)

Arguments

mkde.obj
2D or 3D MKDE object created with initialize3DMKDE or initialize3DMKDE, respectively
val
The value at which the upper bound should be set for all locations in the x and y dimensions.

Value

An updated MKDE list object is returned.

Details

Obviously, the upper bound must be greater than the lower bound.

Examples

Run this code
library(raster)
data(dugongdem)
cell.sz <- mean(res(dugongdem))
ext <- extent(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)

Run the code above in your browser using DataLab