flightpathr

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

commit a72e1be21886850a3cdba0066c1b7cbcc26e40f6
parent cb4e0396bba2f5e52f218d6ed577a14fdec323d2
Author: eamoncaddigan <eamon.caddigan@gmail.com>
Date:   Tue, 19 Apr 2016 10:35:49 -0400

Brief intro to functions.

Diffstat:
MREADME.md | 11++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -1,2 +1,11 @@ -# flightpathr +# flightpathr + Tools to analyze aircraft and flight path data. + +Right now there's only one really useful function, `distanceFromPath()`. This +measures the distance between an actual flight track (a matrix of long/lat data +at each time point) and a flight path (a matrix of long/lat data at each +waypoint). Horizontal and vertical distance are returned separately. + +The helper function `maxDistanceFromPath()` finds the horizontal and vertical +distance at the point of maximum "slant range" (i.e., Euclidean distance).