Description Usage Arguments Value Warning Examples
Sampling period length
| 1 | tte_samp_per(deploy, lps)
 | 
| deploy | deploy object | 
| lps | movement speed in length units (same as camera area measurement) per second | 
The average length of time, in seconds, needed to cross a camera viewshed
This function only calculates a rough estimate of the time needed to move across a camera. There may be better ways.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | deploy <- data.frame(
  cam = c(1, 2, 2, 2),
  start = as.POSIXct(c("2015-12-01 15:00:00",
                       "2015-12-08 00:00:00", 
                       "2016-01-01 00:00:00", 
                       "2016-01-02 00:00:00"),
                     tz = "GMT"),
  end = as.POSIXct(c("2016-01-05 00:00:00", 
                     "2015-12-19 03:30:00", 
                     "2016-01-01 05:00:00",
                     "2016-01-05 00:00:00"), 
                   tz = "GMT"),
  area = c(300, 200, 200, 450)
)
samp_per(deploy, lps = 2)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.