ws4kp/server/scripts/modules/utils/units.mjs

18 lines
608 B
JavaScript
Raw Normal View History

2022-12-06 22:14:56 +00:00
// *********************************** unit conversions ***********************
2022-11-22 22:19:10 +00:00
const round2 = (value, decimals) => Number(`${Math.round(`${value}e${decimals}`)}e-${decimals}`);
const kphToMph = (Kph) => Math.round(Kph / 1.60934);
const celsiusToFahrenheit = (Celsius) => Math.round((Celsius * 9) / 5 + 32);
const kilometersToMiles = (Kilometers) => Math.round(Kilometers / 1.60934);
const metersToFeet = (Meters) => Math.round(Meters / 0.3048);
const pascalToInHg = (Pascal) => round2(Pascal * 0.0002953, 2);
2022-12-06 22:25:28 +00:00
export {
2022-11-22 22:19:10 +00:00
kphToMph,
celsiusToFahrenheit,
kilometersToMiles,
metersToFeet,
pascalToInHg,
};