Run a list of custom calculations on a Pamguard binary file.
calculateModuleData(
binData,
binFuns = list(ClickDetector = list(standardClickCalcs)),
settings = NULL
)
A data frame with one row for each channel of each detection. Each row will have the UID, channel number, and name of the detector. Clicks of different classifications are treated as different detectors for this purpose, with the classification label number appended to the detector name. The number of columns will depend on the results of the calculations from the supplied binFuns.
Pamguard binary data as read in by
loadPamguardBinaryFile
A named list of functions to run on each Pamguard module. Currently supported modules are 'ClickDetector' and 'WhistlesMoans', a sample input for binFuns would be list('ClickDetector'=list(clickFun1, clickFun2), 'WhistlesMoans'=list(wmFun1))
a list of settings from a Pamguard XML file
Taiki Sakai taiki.sakai@noaa.gov