GetTotalValues: Conduct a creel survey of a population of anglers at a site

Description Usage Arguments Details Author(s) References Examples

Description

This function uses the output from MakeAnglers to conduct a bus-route or traditional access point creel survey of the population of anglers from MakeAnglers and provide clerk-observed counts of anglers and their effort.

Usage

1
2
3
GetTotalValues(ang = anglers, teffort = trueeffort, nanglers = length(anglers$starttime), 
    startTime = NULL, endTime = NULL, waitTime = NULL, samplingProb = 1, 
    meanCatchRate = NULL, ...)

Arguments

ang

This argument renames the output from the MakeAnglers function.

teffort

This argument renames the output from the MakeAnglers function.

nanglers

Defines the size of the angler population based upon the length of the anglers from the MakeAnglers function

startTime

The start time of the creel clerk at this site

endTime

The end time of the creel clerk at this site

waitTime

The wait time of the creel clerk at this site

samplingProb

The sampling probability for the survey. The default is 1 but will need to be changed if the survey is conducted during only half of the fishing day (.5) or over longer time periods (e.g., 9.5/12, if the survey is 9.5 hours long).

meanCatchRate

The mean catch rate for the fishery.

...

Arguments to be passed to other functions

Details

Catch rates are assigned to anglers based upon the Gamma distribution with a mean of meanCatchRate.

If both endTime=NULL and waitTime=NULL then waitTime will be 0.5 (one-half hour). If a value is passed to endTime, then waitTime becomes endTime - startTime.

If startTime=NULL, then a startTime is generated from the uniform distribution between 0 and 11.5 hours into the fishing day.

If endTime=NULL, then endTime = startTime+waitTime Incomplete trip effort is observed two ways: 1) by counting anglers that were at the site for the entire time that the surveyor was at the site and 2) counting anglers that arrived after the surveyor arrived at the site but remained at the site after the surveyor left. These anglers are counted and their effort calculated based upon surveyor startTime and endTime.

Completed trip effort is observed two ways: 1) by interviewing anglers that left while the surveyor was at the site. The surveyor can determine effort and catch. 2) by interviewing anglers that both arrived and departed while the surveyor was on site. When waitTime is short, these cases are are rare; however, when waitTime is long (e.g., all day), then these cases are much more likely.

Trip lengths of observed trips (both incomplete and complete) are scaled by the samplingProb value. The samplingProb is used to estimate effort and catch.

Author(s)

Steven Ranney

References

Pollock, K. H., C. M. Jones, and T. L. Brown. 1994. Angler survey methods and their applications in fisheries management. American Fisheries Society, Special Publication 25, Bethesda, Maryland.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#The MakeAnglers() function must be run before GetTotalValues(); otherwise, there
# will be no data from which GetTotalValues() can calculate values.
#MakeAnglers(100)
startTime = .001 #start of fishing day
endTime = 12 #end of fishing day
meanCatchRate = 0.1 #this will cause VERY few fish to be caught!
#GetTotalValues()
#MakeAnglers(100)
startTime = .001 #start of fishing day
endTime = 6 #halfway through the fishing day
samplingProb = .5 #this needs to be .5 because we are sampling only 50% of the fishing day
meanCatchRate = 0.1 #this will cause VERY few fish to be caught!
#GetTotalValues()

stevenranney/creelSurvey documentation built on May 30, 2019, 4:46 p.m.