flightconflicts

Tools to analyze conflicts between aircraft.
git clone https://git.eamoncaddigan.net/flightconflicts.git
Log | Files | Refs | README | LICENSE

identifyLoWC.Rd (764B)


      1 % Generated by roxygen2: do not edit by hand
      2 % Please edit documentation in R/identifyViolations.R
      3 \name{identifyLoWC}
      4 \alias{identifyLoWC}
      5 \title{Determine whether loss of Well Clear (LoWC) has occurred at each time point.}
      6 \usage{
      7 identifyLoWC(trajectory1, trajectory2)
      8 }
      9 \arguments{
     10 \item{trajectory1}{A \code{flighttrajectory} object corresponding to the 
     11 first aircraft.}
     12 
     13 \item{trajectory2}{A \code{flighttrajectory} object corresponding to the 
     14 second aircraft.}
     15 }
     16 \value{
     17 The logical vector indicating whether Well Clear has been violated at
     18   each time point.
     19 }
     20 \description{
     21 Determine whether loss of Well Clear (LoWC) has occurred at each time point.
     22 }
     23 \details{
     24 This code relies on \code{\link{calculateSLoWC}}, see its
     25   documentation for details.
     26 }
     27