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