Last chance! 50% off unlimited learning
Sale ends in
Computes off-transect (also called 'perpendicular') distances from measures of sighting distance and sighting angle.
perpDists(sightDist, sightAngle, data)
Character, name of column in data
that contains the observed or sighting distances from the observer to the detected objects.
Character, name of column in data
that contains the observed or sighting angles from the line transect to the detected
objects. Angles must be measured in degrees.
data.frame object containing sighting distance and sighting angle.
A vector of off-transect (or perpendicular) distances. Units are the same as sightDist
.
If observers recorded sighting distance and sighting angle (as is often common in line transect surveys), use this function to convert
to off-transect distances, the required input data for F.dfunc.estim
.
Buckland, S.T., Anderson, D.R., Burnham, K.P. and Laake, J.L. 1993. Distance Sampling: Estimating Abundance of Biological Populations. Chapman and Hall, London.
# NOT RUN {
# Load the example dataset of sparrow detections from package
data(sparrowDetectionData)
# Compute perpendicular, off-transect distances from the observer's sight distance and angle
sparrowDetectionData$perpDist <- perpDists(sightDist="sightdist", sightAngle="sightangle",
data=sparrowDetectionData)
# }
Run the code above in your browser using DataLab