Compute wind direction from its components
Arguments
- u
A numeric vector with horizontal component of wind
- v
A numeric vector with vertical component of wind
Value
The wind direction in degrees.
Examples
u <- c(1, -1, 0, 0)
v <- c(0, 0, 1, -1)
windDir(u, v)
#> [1] 270 90 180 0