Find the time and date of the start and end of an Echoview fileset
Source:R/EchoviewR.R
EVFindFilesetTime.Rd
This function finds the date and time of the first and last measurement in a fileset using COM scripting
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
Examples
if (FALSE) {
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
}