PointsCircuitous_crocs: Points File Containing VR2 Locations on the Wenlock River in...

Description Usage Format Details Source Examples

Description

This points file contains the locations of 20 VR2 receivers plus their corresponding detection radiuses for monitoring saltwater crocodiles on the Wenlock River in 2008. When receivers have an obstructed line of view to landscape features (i.e. an island or a bend in the river) waypoints were added to facilitate the course of the shortest path. This points file corresponds with crocs.

Usage

1

Format

A data frame with 149 observations on the following 4 variables.

LOCATION

a numeric vector containing the receiver serial number (i.e. RECEIVERID)

LATITUDE

a numeric vector containing the location's latitude in decimal degrees

LONGITUDE

a numeric vector containing the location's longitude in decimal degrees

RADIUS

a numeric vector containing the detection radius for the receiver in meters

Details

The coordinates are given in decimal degrees WGS 84, detection radiuses are in meters.

Source

www.uq.edu.au/eco-lab/V-Track

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Load the points file for the Wenlock River
data(PointsCircuitous_crocs)
head(PointsCircuitous_crocs)
receiversonly <- na.omit(PointsCircuitous_crocs)

# Plot the locations of the receivers plus the waypoints
par(mfrow=c(1,1),las=1,bty="l")
plot(PointsCircuitous_crocs$LONGITUDE, PointsCircuitous_crocs$LATITUDE,
     pch=1,cex=0.5,col="grey",xlab="Longitude",ylab="Latitude")
points(receiversonly$LONGITUDE,receiversonly$LATITUDE,cex=1,pch=10)

VTrack documentation built on May 2, 2019, 9:16 a.m.