1.1.0 • Published 6 years ago

ember-convert-units v1.1.0

Weekly downloads
650
License
MIT
Repository
-
Last release
6 years ago

ember-convert-units

A simple Ember addon for converting between units.

Table of Contents

Installing

Run this command in your project

ember install ember-convert-units

Usage

This addon can be used in two ways

Pure Function

/*
 @param {number} quantity
 @param {string} units
 @param {string} newUnits
 @returns {number} The quantity expressed in the new units
*/

function convertUnits(quantity, units, { to: newUnits }) { ... }

Example

import { convertUnits } from 'ember-convert-units';

convertUnits(2, 'pounds', { to: 'grams' }); // 907.18474
convertUnits(5, 'mi', { to: 'km' }); // 8.04672

Template Helper

{{!--
  @param {number} quantity
  @param {string} units
  @param {string} newUnits 
  @returns {number} The quantity expressed in the new units
--}}

{{convert-units quantity units to=newUnits}}

Example

{{convert-units 2 'pounds' to='grams'}} grams
{{convert-units 5 'mi' to='km'}} km

generates the text

907.18474 grams
8.04672 km

Supported Units

For more details see register-units.js.

Length

UnitNames
Nanometersnanometres, nanometers, nm
Micrometersmicrometres, micrometers, μm
Millimetersmillimetres, millimeters, mm
Centimeterscentimetres, centimeters, cm
Metersmetres, meters, m
Kilometerskilometres, kilometers, km
Inchesinches, in
Feetfeet, ft
Yardsyards, yd
Milesmiles, mi

Mass

UnitNames
Microgramsmicrograms, μg
Milligramsmilligrams, mg
Gramsgrams, g
Killogramskilograms, kg
Tonnestonnes, metric ton
Tons (US)tons, ton
Ouncesounces, oz
Poundspounds, lb

Time

UnitNames
Nanosecondsnanoseconds, ns
Microsecondsmicroseconds, µs
Millisecondsmilliseconds, ms
Secondsseconds, s
Minutesminutes, min
Hourshours, h

Temperature

UnitNames
degrees Fahrenheitdegrees Fahrenheit, deg F, fahrenheit
degrees Celsiusdegrees Celsius, deg C, celsius
Kelvinkelvin

Speed

UnitNames
Meters per Secondm/s
Meters per Hourm/h
Kilometers per Hourkm/h, kph
Feet per Secondft/s
Feet per Hourft/h
Miles per Hourmi/h, mph

Pressure

UnitNames
Nanopascalsnanopascals, npa
Micropascalsmicropascals, μpa
Millipascalsmillipascals, mpa
Centipascalscentipascals, cpa
Pascalspascals, pa
Kilopascalskilopascals, kpa
Nanobarsnanobars, nbar
Microbarsmicrobars, μbar
Millibarsmillibars, mbar
Centibarscentibars, cbar
Barsbars, bar
Kilobarskilobars, kbar
Pounds per Square Inchpsi
Atmosphereatmosphere, at

Volume

UnitNames
Litreslitres, liters, L, l
Millilitresmillilitres, milliliters, ml, mL
Gallonsgallons, gal
Quartquart, qt
Pintpint, pt
Fluid Ouncesfluid ounces, fl oz
Acre Inchacre inch, acre in, acre*in, acre*inch
Acre Footacre foot, acre ft, acre*ft, acre*foot

Not currently supported

  • Area
  • Digital Storage
  • Data Transfer Rate

Feel free to contribute new units if you need them!

1.1.0

6 years ago

1.0.0

6 years ago

0.1.0

8 years ago