Export integration by regions by cells from an Echoview acoustic variable
Source:R/EchoviewR.R
EVIntegrationByRegionsByCellsExport.Rd
This function performs integration by regions by cells for a specified region class and exports the results using COM scripting.
Usage
EVIntegrationByRegionsByCellsExport(
EVFile,
acoVarName,
regionClassName,
exportFn,
dataThreshold = NULL
)
Arguments
- EVFile
An Echoview file object
- acoVarName
A string containing the name of an Echoview acoustic variable
- regionClassName
A string containing the name of an Echoview region class
- exportFn
export filename and path
- dataThreshold
An optional data threshold for export
Examples
if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVIntegrationByRegionsByCellsExport(EVFile, "120 aggregations", "aggregations", exportFn = "~~/KAOS/EVIntegrationByRegionsExport_example.csv")
}