-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add columns for unmarked population density estimation using video-recording camera traps #337
Comments
Thanks for the clear explanation. Regarding the use case where |
I understand the use case and the proposed fields. I have some suggestions on naming, but I'm wondering if this information could not be expressed as timestamps for entry and exit: With Video1 lasting from T0 to T1 and Video2 from T2 to T3 Alt 1: Two extra timestamp fields
Alt 2: Using eventStart/eventEnd + censoringtypeAnd while we are using start and end timestamps to express stays, we might as well use
The stayingTime can be still be captured as:
Would that cover the use cases you have? |
Thank you for your consideration about my proposal!
Yes, it is a common use case. A detection zone is an area where an animal is certainly detected and smaller than the viewshed of the camera trap in general. An animal walking outside a detection zone can be captured by a camera trap by chance with probability less than 1.
I understood that it is preferable to record entry and exit times rather than a staying time. For both alternatives, I want to include information to distinguish whether the staying time is missing or the individual passed outside the detection zone. It is because we can define staying time as 0 for such a record but can not define the time of entry and exit. To solve these issues, could you consider the following modifications to Alt 1?
Alternatively, if you want to avoid adding a more column type, If I have misunderstood your intent, please let me know. |
I propose some optional columns that enable us to apply a unmarked population density estimator using video-recording camera traps, REST model (Nakashima et al. 2018 J Appl Ecol doi.org/10.1111/1365-2664.13059).
This method is based on observations of staying time within a detection zone where all the individuals are certain
to be detected by the camera trap.
Adding the following columns in the deployments.csv and observations.csv is sufficient for applying REST models.
deployments.csv
: Area (m^2, > 0) of the detection zone.observations.csv
: Staying time (seconds, >= 0) associated with an observation. The value zero means that the observed individual did not enter the detection zone.observations.csv
: Censoring type of staying timecomplete
;right
;left
;both
. This column describes censoring due to specification of video recording that automatically stop filming after a designated time and cannot restart immediately even when the animals remain in front of the camera.Similar to individualPositionAngle and individualSpeed for random encounter models, stayingTime and stayingTimeCensoringtype are defined for the observed individual identified by individualID. REST model is applicable to both event-based and media-based observations.
I'm preparing a more detailed explanation for description of staying time observations with an toy example. I'll post it later.
The text was updated successfully, but these errors were encountered: