flightpathr

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

coordsToBearing.Rd (642B)


      1 % Generated by roxygen2: do not edit by hand
      2 % Please edit documentation in R/coordsToBearing.R
      3 \name{coordsToBearing}
      4 \alias{coordsToBearing}
      5 \title{Calculate the bearing between successive longitude/latitude points.}
      6 \usage{
      7 coordsToBearing(longitude, latitude)
      8 }
      9 \arguments{
     10 \item{longitude}{Latitude values.}
     11 
     12 \item{latitude}{Longitude values.}
     13 }
     14 \value{
     15 The numeric vecotor giving the instantaneious bearing at each point
     16   along the trajectory, in degrees. This will have the same length as the
     17   trajectory, but the last element will be \code{NA}.
     18 }
     19 \description{
     20 Calculate the bearing between successive longitude/latitude points.
     21 }
     22