flightpathr

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

identifyBearingChanges.Rd (955B)


      1 % Generated by roxygen2: do not edit by hand
      2 % Please edit documentation in R/identifyManeuvers.R
      3 \name{identifyBearingChanges}
      4 \alias{identifyBearingChanges}
      5 \title{Identify the timepoints in a trajectory that correspond to a change in
      6 commanded heading.}
      7 \usage{
      8 identifyBearingChanges(trajectory, bearingThresh, turnThresh)
      9 }
     10 \arguments{
     11 \item{trajectory}{A \code{flighttrajectory} object (or input coercable to
     12 one) indicating the trajectory of an aircraft.}
     13 
     14 \item{bearingThresh}{A bearing change threshold (in degrees).}
     15 
     16 \item{turnThresh}{A turn rate threshold (in degrees per second).}
     17 }
     18 \value{
     19 A logical vector indicating whether each timepoint can be considered
     20   a turn.
     21 }
     22 \description{
     23 Identify the timepoints in a trajectory that correspond to a change in
     24 commanded heading.
     25 }
     26 \details{
     27 A period is marked as a turn if the turn rate is greater than
     28   \code{turnThresh} and the total bearing change is greater than
     29   \code{bearingThresh}.
     30 }
     31