Export an Echoview line file for an existing line associated with an Acoustic Variable.
Source:R/EchoviewR.R
EVLineExportFromAcousticVarEVL.Rd
This function exports an EV line definition file (.evl) for a line associated with an acoustic variable.
Arguments
- EVFile
An Echoview file COM object
- acoVar
Acoustic variable name that the line to be exported is associated with.
- lineNameToExport
a string containing the name of the line to export
- pathAndFileName
Path and filename of evl file.
Examples
if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj, '~\\example1.EV')$EVFile
EVLineExportFromAcousticVarEVL(EVFile=EVFile,
acoVar='120 seabed and surface excluded',
lineNameToExport='Fixed depth 250 m',
pathAndFileName= '~~KAOS/test2.evl')
}