identifySpeedChanges.Rd (775B)
1 % Generated by roxygen2: do not edit by hand 2 % Please edit documentation in R/identifyManeuvers.R 3 \name{identifySpeedChanges} 4 \alias{identifySpeedChanges} 5 \title{Identify the timepoints in a trajectory that correspond to a change in 6 speed.} 7 \usage{ 8 identifySpeedChanges(trajectory, speedThresh, accelerationThresh) 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{speedThresh}{A speed threshold (in knots).} 15 16 \item{accelerationThresh}{An accelaration threshold (in knots per second).} 17 } 18 \value{ 19 A logical vector indicating whether each timepoint can be considered 20 a change in speed 21 } 22 \description{ 23 Identify the timepoints in a trajectory that correspond to a change in 24 speed. 25 } 26