Skip to content

Get the relative compass bearing of a set of coordinates from another set.

License

Notifications You must be signed in to change notification settings

Richienb/compass-bearing

Repository files navigation

compass-bearing Travis CI Build Status

Get the relative compass bearing of a set of coordinates from another set.

NPM Badge

Install

npm install compass-bearing

Usage

const compassBearing = require("compass-bearing")

compassBearing([10, 10], [20, 20])
//=> 45

API

compassBearing([startX, startY], [endX, endY])

startX, startY, endX, endY

Type: number

The starting and ending coordinates to get the relative bearing from. Returns a degree from 0 up to (but excluding) 360.