From ff5221e22d8e9c85afbf4ea2715e743df4475422 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 25 Sep 2021 10:50:50 -0400 Subject: [PATCH] Add shipping containers as a relative unit of volume --- macrovision.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/macrovision.js b/macrovision.js index 48c8933a..886565ab 100644 --- a/macrovision.js +++ b/macrovision.js @@ -158,6 +158,10 @@ math.createUnit("people", { definition: "75 liters", prefixes: "long" }); +math.createUnit("shippingContainers", { + definition: "1169 ft^3", + prefixes: "long" +}); math.createUnit("olympicPools", { definition: "2500 m^3", prefixes: "long" @@ -366,6 +370,7 @@ const unitChoices = { ], "relative": [ "people", + "shippingContainers", "olympicPools", "oceans", "earthVolumes",