Description Usage Arguments Details Value Author(s) Examples
This function extracts summary data for each transmitter in the file
1 | ExtractTagSummary(sInputFile,sLocation)
|
sInputFile |
a data frame containing VTrack archive data, this archive is created using the ReadInputData function |
sLocation |
the location at which we wish to extract our tag summary data (i.e. |
distances are given in meters
TRANSMITTERID |
a character vector containing the factory assigned transmitter tag id |
FIRSTDETECT |
a vector of class POSIXct of the time of the first location fix |
LASTDETECT |
a vector of class POSIXct of the time of the last location fix |
NODETECTS |
a numeric vector giving the number of transmitter location fixes |
STARTLOC |
a character vector containing the first location at which the transmitter was detected |
ENDLOC |
a character vector containing the last location at which the transmitter was detected |
NOLOCS |
a numeric vector giving the number of unique receivers or stations at which the transmitter was detected |
Ross Dwyer
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Load the crocodile data in the VTrack 1.0 archive format
# adding 10 hours to convert from UTC
data(crocs)
Vcrocs <- ReadInputData(infile=crocs,
iHoursToAdd=10,
dateformat = NULL,
sVemcoFormat='1.0')
# Extract summary table of transmitters in the file according to receiver serial numbers
ExtractTagSummary(Vcrocs,sLocation="RECEIVERID")
# Extract summary table of transmitters in the file according to station names
ExtractTagSummary(Vcrocs,sLocation="STATIONNAME")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.