cameraCol
is NULL by default, meaning the function assumes there was
1 camera per station in CTtable
. If more than 1 camera was deployed
per station, cameraCol
needs to be specified to identify individual
cameras within a station. Likewise, sessionCol
can be used to if
camera trap stations were operated during multiple sessions / trapping
seasons.
dateFormat
defaults to "YYYY-MM-DD", e.g. "2014-10-31", but can be
any other date format or date-time also. It can be specified either in the
format required by strptime
or the 'orders' argument in
parse_date_time
in lubridate. In the example
above, "YYYY-MM-DD" would be specified as "%Y-%m-%d" in base R or "ymd"
in lubridate.
Since version 2.1, dateFormat can be a date-time. That makes it possible to
specify the exact time cameras were set up / retrieved / malfunctioned /
worked again. This information is used to calculate the daily trapping
effort more precisely on days with incomplete effort.
Previously, setup and retrival day were counted as 1, indicating a whole day
of effort on those days. Since version 2.1, setup and retrieval are assumed
to have happened at 12 noon (resulting in daily effort of 0.5 instead of 1).
Users can also specify the exact time cameras were set up (by providing a
date-time in the setup / retrieval / problem columns). See vignette 3 for
more details.
If hasProblems
is TRUE, the function tries to find columns
ProblemX_from
and ProblemX_to
in CTtable
. X
is a
consecutive number from 1 to n, specifying periods in which a camera or
station was not operational. If hasProblems
is FALSE, cameras are
assumed to have been operational uninterruptedly from setup to retrieval
(see camtraps
for details).
allCamsOn
only has an effect if there was more than 1 camera at a
station. If TRUE, for the station to be considered operational, all cameras
at a station need to be operational. If FALSE, at least 1 active camera
renders the station operational. Argument camerasIndependent
defines
if cameras record animals independently (it thus only has an effect if there
was more than 1 camera at a station). This is the case if an observation at
one camera does not increase the probability for detection at another camera
(cameras face different trails at a distance of one another).
Non-independence occurs if an animal is likely to trigger both camers (as
would be the case with 2 cameras facing each other).
If camerasIndependent
is TRUE, 2 active cameras at a station will
result in a station operation value of 2 in the resulting matrix, i.e., 2
independent trap days at 1 station and day. If camerasIndependent
is
FALSE, 2 active cameras will return value 1, i.e., 1 trap night at 1 station
per day.
Row names depend on the input arguments and contain the station name and
potentially session and camera names (if sessionCol
and/or
cameraCol
are defined).
Naming convention is (since version 1.2) Bold information are from
the columns stationCol
, sessionCol
and cameraCol
in
CTtable
:
Station Station__SESS_SessionID
Station__CAM_CameraID
Station__SESS_SessionID__CAM_CameraID
Session are designated with prefix "__SESS_", cameras with prefix "__CAM_".
Therefore, these are reserved words and may not be part of station, session
or camera names. Here's what it may look like in real life:
Station1 Station1__SESS_2019
Station1__CAM_1024152
Station1__SESS_2019__CAM_1024152
Functions detectionHistory and spatialDetectionHistory recognize these and
use the information accordingly.