blob: d45db5d6d41054752463b3e8032ee9de0f6c1016 (
plain)
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
|
const speedConverter = (unit) => {
switch (unit) {
case 'kmh':
return 1.852;
case 'mph':
return 1.15078;
case 'kn':
default:
return 1;
}
};
const distanceConverter = (unit) => {
switch (unit) {
case 'mi':
return 0.000621371;
case 'nmi':
return 0.000539957;
case 'km':
default:
return 0.001;
}
};
export const speedFromKnots = (value, unit) => value * speedConverter(unit);
export const speedToKnots = (value, unit) => value / speedConverter(unit);
export const distanceFromMeters = (value, unit) => value * distanceConverter(unit);
export const distanceToMeters = (value, unit) => value / distanceConverter(unit);
|