From 251e33e8ac163a051fe0f915ecb7da82bb14526d Mon Sep 17 00:00:00 2001 From: Codex Agent Date: Sun, 8 Mar 2026 04:15:53 +0000 Subject: [PATCH] Add cubic-inch and cubic-meter volume converters --- calculators_list.md | 80 ++++++++++++------------- hdyc-svelte/src/lib/data/calculators.ts | 40 +++++++++++++ 2 files changed, 80 insertions(+), 40 deletions(-) diff --git a/calculators_list.md b/calculators_list.md index d43d268..27bfa5d 100644 --- a/calculators_list.md +++ b/calculators_list.md @@ -5038,46 +5038,46 @@ The registry currently contains 1333 unique calculator slugs. - [x] Cubic Feet to Imperial Pints - [x] Cubic Feet to Jiggers - [x] Cubic Feet to Milliliters -- [ ] Cubic Feet to Minims -- [ ] Cubic Feet to Pecks -- [ ] Cubic Feet to Pints -- [ ] Cubic Feet to Quarts -- [ ] Cubic Feet to Tablespoons -- [ ] Cubic Feet to Teaspoons -- [ ] Cubic Feet to Us Gallons -- [ ] Cubic Feet to Us Pints -- [ ] Cubic Inches to Acre-feet -- [ ] Cubic Inches to Barrel (us Oil) -- [ ] Cubic Inches to Bushels -- [ ] Cubic Inches to Centiliters -- [ ] Cubic Inches to Cubic Feet -- [ ] Cubic Inches to Cubic Meters -- [ ] Cubic Inches to Cubic Yards -- [ ] Cubic Inches to Cups -- [ ] Cubic Inches to Drams (fluid) -- [ ] Cubic Inches to Fluid Ounces -- [ ] Cubic Inches to Gallons -- [ ] Cubic Inches to Gill -- [ ] Cubic Inches to Hogshead -- [ ] Cubic Inches to Imperial Fl Oz -- [ ] Cubic Inches to Imperial Gallons -- [ ] Cubic Inches to Imperial Pints -- [ ] Cubic Inches to Jiggers -- [ ] Cubic Inches to Milliliters -- [ ] Cubic Inches to Minims -- [ ] Cubic Inches to Pecks -- [ ] Cubic Inches to Pints -- [ ] Cubic Inches to Quarts -- [ ] Cubic Inches to Tablespoons -- [ ] Cubic Inches to Teaspoons -- [ ] Cubic Inches to Us Gallons -- [ ] Cubic Inches to Us Pints -- [ ] Cubic Meters to Acre-feet -- [ ] Cubic Meters to Barrel (us Oil) -- [ ] Cubic Meters to Bushels -- [ ] Cubic Meters to Centiliters -- [ ] Cubic Meters to Cubic Centimeters -- [ ] Cubic Meters to Cubic Inches +- [x] Cubic Feet to Minims +- [x] Cubic Feet to Pecks +- [x] Cubic Feet to Pints +- [x] Cubic Feet to Quarts +- [x] Cubic Feet to Tablespoons +- [x] Cubic Feet to Teaspoons +- [x] Cubic Feet to Us Gallons +- [x] Cubic Feet to Us Pints +- [x] Cubic Inches to Acre-feet +- [x] Cubic Inches to Barrel (us Oil) +- [x] Cubic Inches to Bushels +- [x] Cubic Inches to Centiliters +- [x] Cubic Inches to Cubic Feet +- [x] Cubic Inches to Cubic Meters +- [x] Cubic Inches to Cubic Yards +- [x] Cubic Inches to Cups +- [x] Cubic Inches to Drams (fluid) +- [x] Cubic Inches to Fluid Ounces +- [x] Cubic Inches to Gallons +- [x] Cubic Inches to Gill +- [x] Cubic Inches to Hogshead +- [x] Cubic Inches to Imperial Fl Oz +- [x] Cubic Inches to Imperial Gallons +- [x] Cubic Inches to Imperial Pints +- [x] Cubic Inches to Jiggers +- [x] Cubic Inches to Milliliters +- [x] Cubic Inches to Minims +- [x] Cubic Inches to Pecks +- [x] Cubic Inches to Pints +- [x] Cubic Inches to Quarts +- [x] Cubic Inches to Tablespoons +- [x] Cubic Inches to Teaspoons +- [x] Cubic Inches to Us Gallons +- [x] Cubic Inches to Us Pints +- [x] Cubic Meters to Acre-feet +- [x] Cubic Meters to Barrel (us Oil) +- [x] Cubic Meters to Bushels +- [x] Cubic Meters to Centiliters +- [x] Cubic Meters to Cubic Centimeters +- [x] Cubic Meters to Cubic Inches - [ ] Cubic Meters to Cups - [ ] Cubic Meters to Drams (fluid) - [ ] Cubic Meters to Fluid Ounces diff --git a/hdyc-svelte/src/lib/data/calculators.ts b/hdyc-svelte/src/lib/data/calculators.ts index 826f522..ec8b4de 100644 --- a/hdyc-svelte/src/lib/data/calculators.ts +++ b/hdyc-svelte/src/lib/data/calculators.ts @@ -2226,6 +2226,46 @@ export const calculators: CalculatorDef[] = [ {"slug": "cubic-feet-to-imperial-pints", "name": "Cubic Feet to Imperial Pints", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Imperial Pints"}, "factor": 49.83068367234261}, {"slug": "cubic-feet-to-jiggers", "name": "Cubic Feet to Jiggers", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Jiggers"}, "factor": 638.3376623376623}, {"slug": "cubic-feet-to-milliliters", "name": "Cubic Feet to Milliliters", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Milliliters"}, "factor": 28316.846592}, + {"slug": "cubic-feet-to-minims", "name": "Cubic Feet to Minims", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Minims"}, "factor": 459603.1168831169}, + {"slug": "cubic-feet-to-pecks", "name": "Cubic Feet to Pecks", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Pecks"}, "factor": 3.2142558197933426}, + {"slug": "cubic-feet-to-pints", "name": "Cubic Feet to Pints", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Pints"}, "factor": 59.84415584415584}, + {"slug": "cubic-feet-to-quarts", "name": "Cubic Feet to Quarts", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Quarts"}, "factor": 29.92207792207792}, + {"slug": "cubic-feet-to-tablespoons", "name": "Cubic Feet to Tablespoons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Tablespoons"}, "factor": 1915.012987012987}, + {"slug": "cubic-feet-to-teaspoons", "name": "Cubic Feet to Teaspoons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Teaspoons"}, "factor": 5745.038961038962}, + {"slug": "cubic-feet-to-us-gallons", "name": "Cubic Feet to Us Gallons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Us Gallons"}, "factor": 7.48051948051948}, + {"slug": "cubic-feet-to-us-pints", "name": "Cubic Feet to Us Pints", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Us Pints"}, "factor": 59.84415584415584}, + {"slug": "cubic-inches-to-acre-feet", "name": "Cubic Inches to Acre-feet", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Acre-feet"}, "factor": 1.32852089922797e-08}, + {"slug": "cubic-inches-to-barrel-us-oil", "name": "Cubic Inches to Barrel (us Oil)", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Barrel (us Oil)"}, "factor": 0.00010307153164296021}, + {"slug": "cubic-inches-to-bushels", "name": "Cubic Inches to Bushels", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Bushels"}, "factor": 0.00046502543689139794}, + {"slug": "cubic-inches-to-centiliters", "name": "Cubic Inches to Centiliters", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Centiliters"}, "factor": 1.6387063999999998}, + {"slug": "cubic-inches-to-cubic-feet", "name": "Cubic Inches to Cubic Feet", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Cubic Feet"}, "factor": 0.0005787037037037037}, + {"slug": "cubic-inches-to-cubic-meters", "name": "Cubic Inches to Cubic Meters", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Cubic Meters"}, "factor": 1.6387064e-05}, + {"slug": "cubic-inches-to-cubic-yards", "name": "Cubic Inches to Cubic Yards", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Cubic Yards"}, "factor": 2.143347050754458e-05}, + {"slug": "cubic-inches-to-cups", "name": "Cubic Inches to Cups", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Cups"}, "factor": 0.06926406926406926}, + {"slug": "cubic-inches-to-drams-fluid", "name": "Cubic Inches to Drams (fluid)", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Drams (fluid)"}, "factor": 4.432900432900433}, + {"slug": "cubic-inches-to-fluid-ounces", "name": "Cubic Inches to Fluid Ounces", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Fluid Ounces"}, "factor": 0.5541125541125541}, + {"slug": "cubic-inches-to-gallons", "name": "Cubic Inches to Gallons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Gallons"}, "factor": 0.004329004329004329}, + {"slug": "cubic-inches-to-gill", "name": "Cubic Inches to Gill", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Gill"}, "factor": 0.13852813852813853}, + {"slug": "cubic-inches-to-hogshead", "name": "Cubic Inches to Hogshead", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Hogshead"}, "factor": 6.871435433067474e-05}, + {"slug": "cubic-inches-to-imperial-fl-oz", "name": "Cubic Inches to Imperial Fl Oz", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Imperial Fl Oz"}, "factor": 0.5767440239854468}, + {"slug": "cubic-inches-to-imperial-gallons", "name": "Cubic Inches to Imperial Gallons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Imperial Gallons"}, "factor": 0.0036046501499090427}, + {"slug": "cubic-inches-to-imperial-pints", "name": "Cubic Inches to Imperial Pints", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Imperial Pints"}, "factor": 0.02883720119927234}, + {"slug": "cubic-inches-to-jiggers", "name": "Cubic Inches to Jiggers", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Jiggers"}, "factor": 0.3694083694083694}, + {"slug": "cubic-inches-to-milliliters", "name": "Cubic Inches to Milliliters", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Milliliters"}, "factor": 16.387064}, + {"slug": "cubic-inches-to-minims", "name": "Cubic Inches to Minims", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Minims"}, "factor": 265.97402597402595}, + {"slug": "cubic-inches-to-pecks", "name": "Cubic Inches to Pecks", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Pecks"}, "factor": 0.0018601017475655918}, + {"slug": "cubic-inches-to-pints", "name": "Cubic Inches to Pints", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Pints"}, "factor": 0.03463203463203463}, + {"slug": "cubic-inches-to-quarts", "name": "Cubic Inches to Quarts", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Quarts"}, "factor": 0.017316017316017316}, + {"slug": "cubic-inches-to-tablespoons", "name": "Cubic Inches to Tablespoons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Tablespoons"}, "factor": 1.1082251082251082}, + {"slug": "cubic-inches-to-teaspoons", "name": "Cubic Inches to Teaspoons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Teaspoons"}, "factor": 3.324675324675325}, + {"slug": "cubic-inches-to-us-gallons", "name": "Cubic Inches to Us Gallons", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Us Gallons"}, "factor": 0.004329004329004329}, + {"slug": "cubic-inches-to-us-pints", "name": "Cubic Inches to Us Pints", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Inches", "in2": "Us Pints"}, "factor": 0.03463203463203463}, + {"slug": "cubic-meters-to-acre-feet", "name": "Cubic Meters to Acre-feet", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Meters", "in2": "Acre-feet"}, "factor": 0.0008107131937899126}, + {"slug": "cubic-meters-to-barrel-us-oil", "name": "Cubic Meters to Barrel (us Oil)", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Meters", "in2": "Barrel (us Oil)"}, "factor": 6.289810770432105}, + {"slug": "cubic-meters-to-bushels", "name": "Cubic Meters to Bushels", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Meters", "in2": "Bushels"}, "factor": 28.377593258401745}, + {"slug": "cubic-meters-to-centiliters", "name": "Cubic Meters to Centiliters", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Meters", "in2": "Centiliters"}, "factor": 100000.0}, + {"slug": "cubic-meters-to-cubic-centimeters", "name": "Cubic Meters to Cubic Centimeters", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Meters", "in2": "Cubic Centimeters"}, "factor": 1000000.0}, + {"slug": "cubic-meters-to-cubic-inches", "name": "Cubic Meters to Cubic Inches", "category": "volume", "type": "standard", "labels": {"in1": "Cubic Meters", "in2": "Cubic Inches"}, "factor": 61023.74409473229}, ];