flightconflicts

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

identifyNMAC.Rd (771B)


      1 % Generated by roxygen2: do not edit by hand
      2 % Please edit documentation in R/identifyViolations.R
      3 \name{identifyNMAC}
      4 \alias{identifyNMAC}
      5 \title{Determine whether an NMAC (near mid air collision) has occurred at each time 
      6 point.}
      7 \usage{
      8 identifyNMAC(trajectory1, trajectory2)
      9 }
     10 \arguments{
     11 \item{trajectory1}{A \code{flighttrajectory} object corresponding to the
     12 first aircraft.}
     13 
     14 \item{trajectory2}{A \code{flighttrajectory} object corresponding to the
     15 second aircraft.}
     16 }
     17 \value{
     18 The logical vector indicating whether NMAC criteria are met at each 
     19   time point.
     20 }
     21 \description{
     22 Determine whether an NMAC (near mid air collision) has occurred at each time 
     23 point.
     24 }
     25 \details{
     26 NMAC is a cylinder +/- 100 ft above and below the ownship with a 
     27   radius of 500 ft.
     28 }
     29