Skip to content

Commit

Permalink
fix(volume): fix conversion ratios
Browse files Browse the repository at this point in the history
Closes #545
  • Loading branch information
jonahsnider committed Sep 21, 2022
1 parent 06e72c6 commit 71f6035
Show file tree
Hide file tree
Showing 6 changed files with 133 additions and 127 deletions.
112 changes: 56 additions & 56 deletions packages/bundled-conversions/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -800,62 +800,62 @@ export const conversions = {
steres: [11, 1],
'm³': [11, 1],
m3: [11, 1],
'cubic petameter': [11, 1000000000000000],
'cubic petameters': [11, 1000000000000000],
Pm3: [11, 1000000000000000],
'Pm³': [11, 1000000000000000],
'cubic terameter': [11, 1000000000000],
'cubic terameters': [11, 1000000000000],
Tm3: [11, 1000000000000],
'Tm³': [11, 1000000000000],
'cubic gigameter': [11, 1000000000],
'cubic gigameters': [11, 1000000000],
Gm3: [11, 1000000000],
'Gm³': [11, 1000000000],
'cubic megameter': [11, 1000000],
'cubic megameters': [11, 1000000],
Mm3: [11, 1000000],
'Mm³': [11, 1000000],
'cubic kilometer': [11, 1000],
'cubic kilometers': [11, 1000],
km3: [11, 1000],
'km³': [11, 1000],
'cubic hectometer': [11, 100],
'cubic hectometers': [11, 100],
hm3: [11, 100],
'hm³': [11, 100],
'cubic decameter': [11, 10],
'cubic decameters': [11, 10],
dam3: [11, 10],
'dam³': [11, 10],
'cubic decimeter': [11, 0.1],
'cubic decimeters': [11, 0.1],
dm3: [11, 0.1],
'dm³': [11, 0.1],
'cubic centimeter': [11, 0.01],
'cubic centimeters': [11, 0.01],
cm3: [11, 0.01],
'cm³': [11, 0.01],
'cubic millimeter': [11, 0.001],
'cubic millimeters': [11, 0.001],
mm3: [11, 0.001],
'mm³': [11, 0.001],
'cubic micrometer': [11, 0.000001],
'cubic micrometers': [11, 0.000001],
μm3: [11, 0.000001],
'μm³': [11, 0.000001],
'cubic nanometer': [11, 1e-9],
'cubic nanometers': [11, 1e-9],
nm3: [11, 1e-9],
'nm³': [11, 1e-9],
'cubic picometer': [11, 1e-12],
'cubic picometers': [11, 1e-12],
pm3: [11, 1e-12],
'pm³': [11, 1e-12],
'cubic femtometer': [11, 1e-15],
'cubic femtometers': [11, 1e-15],
fm3: [11, 1e-15],
'fm³': [11, 1e-15],
'cubic petameter': [11, 1e45],
'cubic petameters': [11, 1e45],
Pm3: [11, 1e45],
'Pm³': [11, 1e45],
'cubic terameter': [11, 1e36],
'cubic terameters': [11, 1e36],
Tm3: [11, 1e36],
'Tm³': [11, 1e36],
'cubic gigameter': [11, 1e27],
'cubic gigameters': [11, 1e27],
Gm3: [11, 1e27],
'Gm³': [11, 1e27],
'cubic megameter': [11, 1000000000000000000],
'cubic megameters': [11, 1000000000000000000],
Mm3: [11, 1000000000000000000],
'Mm³': [11, 1000000000000000000],
'cubic kilometer': [11, 1000000000],
'cubic kilometers': [11, 1000000000],
km3: [11, 1000000000],
'km³': [11, 1000000000],
'cubic hectometer': [11, 1000000],
'cubic hectometers': [11, 1000000],
hm3: [11, 1000000],
'hm³': [11, 1000000],
'cubic decameter': [11, 1000],
'cubic decameters': [11, 1000],
dam3: [11, 1000],
'dam³': [11, 1000],
'cubic decimeter': [11, 0.001],
'cubic decimeters': [11, 0.001],
dm3: [11, 0.001],
'dm³': [11, 0.001],
'cubic centimeter': [11, 0.000001],
'cubic centimeters': [11, 0.000001],
cm3: [11, 0.000001],
'cm³': [11, 0.000001],
'cubic millimeter': [11, 1e-9],
'cubic millimeters': [11, 1e-9],
mm3: [11, 1e-9],
'mm³': [11, 1e-9],
'cubic micrometer': [11, 1e-18],
'cubic micrometers': [11, 1e-18],
μm3: [11, 1e-18],
'μm³': [11, 1e-18],
'cubic nanometer': [11, 1e-27],
'cubic nanometers': [11, 1e-27],
nm3: [11, 1e-27],
'nm³': [11, 1e-27],
'cubic picometer': [11, 1e-36],
'cubic picometers': [11, 1e-36],
pm3: [11, 1e-36],
'pm³': [11, 1e-36],
'cubic femtometer': [11, 1e-45],
'cubic femtometers': [11, 1e-45],
fm3: [11, 1e-45],
'fm³': [11, 1e-45],
liter: [11, 0.001],
liters: [11, 0.001],
litre: [11, 0.001],
Expand Down
Loading

0 comments on commit 71f6035

Please sign in to comment.