# NOT RUN {
# Extract residence events at RECEIVERS from the VTrack transformed
# crocodile dataset
# Load the crocodile dataset into the VTrack archive format
data(crocs)
Vcrocs <- ReadInputData(infile=crocs,
iHoursToAdd=10,
fAATAMS=FALSE,
fVemcoDualSensor=FALSE,
dateformat = NULL,
sVemcoFormat='1.0')
# Extract data for only the transmitter #138
T138 <- ExtractData(Vcrocs,
sQueryTransmitterList = 138)
# Extract residence and non residence events
# Minimum number of detections to register as a residence
# event = 2
# Min time period between detections before residence event
# recorded = 43200 secs (12 hours)
T139Res <- RunResidenceExtraction(sInputFile=T138,
sLocation="RECEIVERID",
iResidenceThreshold=2,
iTimeThreshold=43200,
sDistanceMatrix=NULL)
# The nonresidences event table
T139nonresid <- T139Res$nonresidences
# Generate the Direct Distance Matrix
data(PointsDirect_crocs)
DirectDM <- GenerateDirectDistance(PointsDirect_crocs)
# Run the VR2 distances function
(My_distances <- ReturnVR2Distance(NonResidenceFile = T139nonresid,
sDistanceMatrix = DirectDM))
# }
Run the code above in your browser using DataLab