Get the relative compass bearing of a set of coordinates from another set.
npm install compass-bearing
const compassBearing = require("compass-bearing")
compassBearing([10, 10], [20, 20])
//=> 45
Type: number
The starting and ending coordinates to get the relative bearing from. Returns a degree from 0
up to (but excluding) 360
.