flightpathr

Tools to analyze aircraft and flight path data.
git clone https://git.eamoncaddigan.net/flightpathr.git
Log | Files | Refs | README | LICENSE

distanceFromPath.Rd (888B)


      1 % Generated by roxygen2: do not edit by hand
      2 % Please edit documentation in R/distanceFromPath.R
      3 \name{distanceFromPath}
      4 \alias{distanceFromPath}
      5 \title{Calculate the distance of a flight trajectory from a flight path.}
      6 \usage{
      7 distanceFromPath(trajectory, path)
      8 }
      9 \arguments{
     10 \item{trajectory}{A \code{flighttrajectory} object (or an object that can be
     11 coerced into one) indicating the trajectory of an aircraft.}
     12 
     13 \item{path}{A \code{flightpath} object (or an object that can be coerced into
     14 one) indicating the ordered waypoints a pre-defined flight path.}
     15 }
     16 \value{
     17 A data.frame containing two columns representing the distance between
     18   the aircraft and its planned flight path (in feet): \code{horizontal}
     19   indicates the horizontal distance and \code{vertical} indicates the
     20   vertical distance.
     21 }
     22 \description{
     23 Calculate the distance of a flight trajectory from a flight path.
     24 }
     25