| recordTableSampleMultiSeason {camtrapR} | R Documentation |
Sample multi-season species record table from camera trap images
Description
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.
Usage
data(recordTableSampleMultiSeason)
Format
A data frame with 78 rows and 11 variables
Details
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 |
Examples
# 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)
[Package camtrapR version 2.3.0 Index]