createPath.Rd (934B)
1 % Generated by roxygen2: do not edit by hand 2 % Please edit documentation in R/createPath.R 3 \name{createPath} 4 \alias{createPath} 5 \title{Create a flightpath object from coordinate info.} 6 \usage{ 7 createPath(longitude, latitude, altitude = NA) 8 } 9 \arguments{ 10 \item{longitude}{Required; numeric vector giving aircraft longitude in 11 degrees.} 12 13 \item{latitude}{Required; numeric vector giving aircraft latitude in degrees.} 14 15 \item{altitude}{Optional; numeric vector giving aircraft altitude (AGL) in 16 feet.} 17 } 18 \value{ 19 A flightpath object encapsulating these parameters (with default 20 values substituded as necessary). 21 } 22 \description{ 23 Create a flightpath object from coordinate info. 24 } 25 \details{ 26 \code{longitude} and \code{latitude} must be the same length. 27 \code{altitude} must also have a length equal to these parameters or be 28 scalar. If \code{altitude} is \code{NA}, operations that compare values to 29 flightpaths will be affected. 30 } 31