telemetry
data and a continuous-time movement model.occurrence(data,CTMM,H=diag(0,2),res.time=20,res.space=1000,grid=NULL,
cor.min=0.5,dt.max=NULL)
telemetry
object.ctmm
movement model from the output of ctmm.fit
.x
and y
. Not yet supported.UD
object containing the sampled grid line locations x
and y
, the probability density and cumulative distribution functions evaluated on the sampled grid locations PDF
& CDF
, the optional bandwidth matrix H
, and the area of each grid cell dA
.akde
, raster.UD
# Load package and data
library(ctmm)
data(buffalo)
cilla <- buffalo[[1]]
# Fit a continuous-velocity model with tau ~ c(10 days, 1 hour)
# see help(variogram.fit)
GUESS <- ctmm(tau=c(10*24*60^2,60^2))
FIT <- ctmm.fit(cilla,GUESS)
# Compute occurence distribution
UD <- occurrence(cilla,FIT)
# Plot data with UD
plot(cilla,UD=UD,col.level=NA)
Run the code above in your browser using DataLab