flightpathr

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

maxDistanceFromPath.Rd (748B)


      1 % Generated by roxygen2: do not edit by hand
      2 % Please edit documentation in R/maxDistanceFromPath.R
      3 \name{maxDistanceFromPath}
      4 \alias{maxDistanceFromPath}
      5 \title{Find the maximum distance of a flight trajectory from a flight path.}
      6 \usage{
      7 maxDistanceFromPath(trajectory, path)
      8 }
      9 \arguments{
     10 \item{trajectory}{A matrix or SpatialPoints object indicating the trajectory
     11 of an aircraft.}
     12 
     13 \item{path}{A matrix or SpatialPoints object indicating the ordered waypoints
     14 a pre-defined flight path.}
     15 }
     16 \value{
     17 A named vector indicating the horizontal and vertical distance from
     18   the fligh path at which the aircraft reached the maximum slant (euclidean)
     19   distance.
     20 }
     21 \description{
     22 Find the maximum distance of a flight trajectory from a flight path.
     23 }
     24