1.0.0 • Published 9 years ago
gps-speed v1.0.0
gps-speed
Convert speed in km/h from speed in 1/1000th knots
Installation
npm install gps-speed## Usage
const gpsSpeed = require('gps-speed');
const speed = 15902;
const speed_km_h = gpsSpeed.convert(speed);
console.log(speed_km_h); //29.450504API
convert(speed)
const gpsSpeed = require('gps-speed');
gpsSpeed.convert(15902); //29.450504
gpsSpeed.convert(); //0Test
npm testCoverage
npm run-script test-travisLicense
1.0.0
9 years ago