recordTableSampleMultiSeason.Rd
Sample multi-season species record table from camera trap images generated from the sample images in the package with the function recordTable
. Season 2009 is the same as recordTableSample
, season 2010 was simulated by adding 1 year to these records.
data(recordTableSampleMultiSeason)
A data frame with 78 rows and 11 variables
The variables are as follows:
Station | Camera trap station ID |
Species | Species ID |
DateTimeOriginal | Date and time as extracted from image |
Date | record date |
Time | record time of day |
delta.time.secs | time difference to first species record at a station (seconds) |
delta.time.mins | time difference to first species record at a station (minutes) |
delta.time.hours | time difference to first species record at a station (hours) |
delta.time.days | time difference to first species record at a station (days) |
Directory | Image directory |
FileName | image filename |
# data were created with the following code:
data(recordTableSample)
recordTableSample_season2 <- recordTableSample
# substitute 2009 with 2010
recordTableSample_season2$DateTimeOriginal <- gsub("2009", "2010",
recordTableSample_season2$DateTimeOriginal)
# combine with season 2009
recordTableSampleMultiSeason <- rbind(recordTableSample, recordTableSample_season2)