This function finds the date and time of the first and last measurement in a fileset using COM scripting

EVFindFilesetTime(EVFile, filesetName)

Arguments

EVFile

An Echoview file COM object

filesetName

An Echoview fileset name

Value

A list object with two elements $start.time: The date and time of the first measurement in the fileset, and $end.time: The date and time of the last measurement in the fileset

References

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

See also

Examples

# NOT RUN {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
survey.time = EVFindFilesetTime(EVFile = EVFile, filesetName = '038-120-200')
start.time <- survey.time$start.time
end.time <- survey.time$end.time
# }