Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Windrose is a javascript browser/node module that converts compass degrees into compass points and vice versa.
npm install windrose --save
bower install windrose --save
var Windrose = require('windrose');
Windrose.getPoint(225); /* returns { symbol: 'SW', name: 'South West', depth: 1 } */
Windrose.getPoint(236.25); /* returns { symbol: SWbW, name: 'South West by West', depth: 3 } */
Windrose.getPoint(236.25, { depth: 0 }); /* returns { symbol: 'W', name: 'West', depth: 0 } */
Windrose.getDegrees('S'); /* returns { min: 174.375, value: 180, max: 185.625 } */
Windrose.getDegrees('South'); /* returns { min: 174.375, value: 180, max: 185.625 } */
Windrose.getDegrees('S', { depth: 0 }); /* returns { min: 135, value: 180, max: 225 } */
Just include it in your html:
<script type="text/javascript" src="windrose.js">
The Windrose
object will be available in your global scope.
It also supports AMD.
degrees
(number) the degrees to convert to point (only valid if >= 0 or <= 360)
opts
(object) options hash [optional]
depth
(integer) the depth of search it can be a value between 0 and 3.With value 0
, it only returns the 4 main compass points (N, E, S, W).
With value 1
returns the main 8 compass points (N, NE, E, SE, S, SW, W, NW).
With value 2
returns the main 16 compass points (N, NNE, NE, ENE, E, ESE, SE, SSE, S, SSW, SW, WSW, W, WNW, NW, NNW).
With value 3
returns the 32 points of the compass.
Any other value will return undefined
.
name
(string) the name or symbol of the compass point to convert to degreesopts
(object) options hash [optional]
depth
(integer) the depth of search it can be a value between 0 and 3.Copyright (c) 2015 Rogério Vicente. Licensed under the MIT license.
FAQs
Convert compass degrees into points of the compass and vice versa
The npm package windrose receives a total of 0 weekly downloads. As such, windrose popularity was classified as not popular.
We found that windrose demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.