average_bearing {hutils} | R Documentation |
Average of bearings
Description
Average of bearings
Usage
average_bearing(theta1, theta2, average_of_opposite = NULL)
average_bearing_n(thetas)
Arguments
theta1 , theta2 |
Bearings, expressed in degrees. |
average_of_opposite |
The average of opposing bearings (e.g. average of north
and south) is not well-defined. If |
thetas |
A vector of bearings. |
Value
For 'average_bearing', the bearing bisecting the two bearings.
For 'average_bearing_n', the average bearing of the bearing.
Examples
average_bearing(0, 90)
average_bearing(0, 270)
average_bearing(90, 180)
average_bearing(0, 180)
average_bearing(0, 180, average_of_opposite = 3)
average_bearing(0, 180, average_of_opposite = "left")
average_bearing_n(1:179)
[Package hutils version 1.8.1 Index]