This function adds a calibration file (.ecs) to a fileset using COM scripting.

EVAddCalibrationFile(EVFile, filesetName, calibrationFile)

Arguments

EVFile

An Echoview file COM object

filesetName

An Echoview fileset name

calibrationFile

An Echoview calibration (.ecs) file path and name

Value

a list object with one element. $msg: message for processing log

References

http://support.echoview.com/WebHelp/Echoview.htm/

See also

Examples

# NOT RUN {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVAddCalibrationFile(EVFile = EVFile, filesetName = '038-120-200',
calibrationFile = '~~/KAOS/20120326_KAOS_SimradEK5.ecs')
# }