Skip to contents

This function exports an EV line definition file (.evl) for a line associated with an acoustic variable.

Usage

EVLineExportFromAcousticVarEVL(
  EVFile,
  acoVar,
  lineNameToExport,
  pathAndFileName
)

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')
}