1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
const speedConverter = (unit) => {
switch (unit) {
case 'kmh':
return 1.852;
case 'mph':
return 1.15078;
case 'kn':
default:
return 1;
}
};
export const speedUnitString = (unit, t) => {
switch (unit) {
case 'kmh':
return t('sharedKmh');
case 'mph':
return t('sharedMph');
case 'kn':
default:
return t('sharedKn');
}
};
export const speedFromKnots = (value, unit) => value * speedConverter(unit);
export const speedToKnots = (value, unit) => value / speedConverter(unit);
const distanceConverter = (unit) => {
switch (unit) {
case 'mi':
return 0.000621371;
case 'nmi':
return 0.000539957;
case 'km':
default:
return 0.001;
}
};
export const distanceUnitString = (unit, t) => {
switch (unit) {
case 'mi':
return t('sharedMi');
case 'nmi':
return t('sharedNmi');
case 'km':
default:
return t('sharedKm');
}
};
export const distanceFromMeters = (value, unit) => value * distanceConverter(unit);
export const distanceToMeters = (value, unit) => value / distanceConverter(unit);
const altitudeConverter = (unit) => {
switch (unit) {
case 'ft':
return 3.28084;
case 'm':
default:
return 1;
}
};
export const altitudeUnitString = (unit, t) => {
switch (unit) {
case 'ft':
return t('sharedFeet');
case 'm':
default:
return t('sharedMeters');
}
};
export const altitudeFromMeters = (value, unit) => value * altitudeConverter(unit);
export const altitudeToMeters = (value, unit) => value / altitudeConverter(unit);
const volumeConverter = (unit) => {
switch (unit) {
case 'impGal':
return 4.546;
case 'usGal':
return 3.785;
case 'ltr':
default:
return 1;
}
};
export const volumeUnitString = (unit, t) => {
switch (unit) {
case 'impGal':
return t('sharedGallonAbbreviation');
case 'usGal':
return t('sharedGallonAbbreviation');
case 'ltr':
default:
return t('sharedLiterAbbreviation');
}
};
export const volumeFromLiters = (value, unit) => value / volumeConverter(unit);
export const volumeToLiters = (value, unit) => value * volumeConverter(unit);
|