standaardisation updates
This commit is contained in:
58
convert/definitions/speed.js
Normal file
58
convert/definitions/speed.js
Normal file
@@ -0,0 +1,58 @@
|
||||
var metric
|
||||
, imperial;
|
||||
|
||||
metric = {
|
||||
'm/s': {
|
||||
name: {
|
||||
singular: 'Metre per second'
|
||||
, plural: 'Metres per second'
|
||||
}
|
||||
, to_anchor: 3.6
|
||||
}
|
||||
, 'km/h': {
|
||||
name: {
|
||||
singular: 'Kilometre per hour'
|
||||
, plural: 'Kilometres per hour'
|
||||
}
|
||||
, to_anchor: 1
|
||||
}
|
||||
}
|
||||
|
||||
imperial = {
|
||||
'm/h': {
|
||||
name: {
|
||||
singular: 'Mile per hour'
|
||||
, plural: 'Miles per hour'
|
||||
}
|
||||
, to_anchor: 1
|
||||
}
|
||||
, knot: {
|
||||
name: {
|
||||
singular: 'Knot'
|
||||
, plural: 'Knots'
|
||||
}
|
||||
, to_anchor: 1.150779
|
||||
}
|
||||
, 'ft/s': {
|
||||
name: {
|
||||
singular: 'Foot per second'
|
||||
, plural: 'Feet per second'
|
||||
}
|
||||
, to_anchor: 0.681818
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
metric: metric
|
||||
, imperial: imperial
|
||||
, _anchors: {
|
||||
metric: {
|
||||
unit: 'km/h'
|
||||
, ratio: 1/1.609344
|
||||
}
|
||||
, imperial: {
|
||||
unit: 'm/h'
|
||||
, ratio: 1.609344
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user