Extract calculator teaser metadata
This commit is contained in:
@@ -55,6 +55,9 @@
|
||||
<div class="calculator-card">
|
||||
<div class="calc-header">
|
||||
<h2>{config.name}</h2>
|
||||
{#if config.teaser}
|
||||
<p class="calc-subtitle">{config.teaser}</p>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="calc-body" class:three-col={has3}>
|
||||
@@ -147,6 +150,12 @@
|
||||
color: #fff;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
.calc-subtitle {
|
||||
margin: 0.35rem 0 0;
|
||||
font-size: 0.9rem;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.calc-body {
|
||||
display: grid;
|
||||
|
||||
@@ -13,6 +13,7 @@ export interface CalculatorDef {
|
||||
toBase?: number;
|
||||
labels: { in1: string; in2: string; in3?: string };
|
||||
descriptionHTML?: string;
|
||||
teaser?: string;
|
||||
}
|
||||
|
||||
export const categories: Record<string, { label: string; icon: string }> = {
|
||||
@@ -37,16 +38,16 @@ export const categories: Record<string, { label: string; icon: string }> = {
|
||||
};
|
||||
|
||||
export const calculators: CalculatorDef[] = [
|
||||
{"slug": "inches-to-feet", "name": "Inches to Feet \u2013 If a shelf spans 36 inches, how many feet of trim does it cover?", "category": "length", "type": "standard", "labels": {"in1": "Inches", "in2": "Feet \u2013 If a shelf spans 36 inches, how many feet of trim does it cover?"}, "factor": 12.0},
|
||||
{"slug": "kilograms-to-pounds", "name": "Kilograms to Pounds \u2013 A cyclist weighing 68 kilograms wonders how many pounds the scale will show.", "category": "weight", "type": "standard", "labels": {"in1": "Kilograms", "in2": "Pounds \u2013 A cyclist weighing 68 kilograms wonders how many pounds the scale will show."}, "factor": 0.453592},
|
||||
{"slug": "miles-to-kilometers", "name": "Miles to Kilometers \u2013 Planning a road trip, how many kilometers will 120 miles travel?", "category": "length", "type": "standard", "labels": {"in1": "Miles", "in2": "Kilometers \u2013 Planning a road trip, how many kilometers will 120 miles travel?"}, "factor": 0.62137119},
|
||||
{"slug": "acres-to-hectares", "name": "Acres to Hectares \u2013 A 50-acre farm prompts the question: how many hectares does it include?", "category": "area", "type": "standard", "labels": {"in1": "Acres", "in2": "Hectares \u2013 A 50-acre farm prompts the question: how many hectares does it include?"}, "factor": 0.404686},
|
||||
{"slug": "acres-to-square-feet", "name": "Acres to Square Feet \u2013 For the listing, convert 2 acres into square feet to describe the lot size.", "category": "length", "type": "standard", "labels": {"in1": "Acres", "in2": "Square Feet \u2013 For the listing, convert 2 acres into square feet to describe the lot size."}, "factor": 43560.0},
|
||||
{"slug": "angstroms-to-nanometers", "name": "Angstroms to Nanometers \u2013 A materials scientist changes 25 angstroms into nanometers to describe a film thickness.", "category": "length", "type": "standard", "labels": {"in1": "Angstroms", "in2": "Nanometers \u2013 A materials scientist changes 25 angstroms into nanometers to describe a film thickness."}, "factor": 0.1},
|
||||
{"slug": "apothecary-ounces-to-grams", "name": "Apothecary Ounces to Grams \u2013 Preparing a tincture, how many grams are packed in 8 apothecary ounces?", "category": "weight", "type": "standard", "labels": {"in1": "Apothecary Ounces", "in2": "Grams \u2013 Preparing a tincture, how many grams are packed in 8 apothecary ounces?"}, "factor": 31.1034768},
|
||||
{"slug": "astronomical-units-to-light-years", "name": "Astronomical Units to Light Years \u2013 The astronomer asks how many light years correspond to 5 astronomical units.", "category": "time", "type": "standard", "labels": {"in1": "Astronomical Units", "in2": "Light Years \u2013 The astronomer asks how many light years correspond to 5 astronomical units."}, "factor": 1.58125074e-05},
|
||||
{"slug": "atmosphere-to-mmhg", "name": "Atmosphere to mmHg \u2013 In the lab, what is 2 atmospheres of pressure in millimeters of mercury?", "category": "length", "type": "standard", "labels": {"in1": "Atmosphere", "in2": "mmHg \u2013 In the lab, what is 2 atmospheres of pressure in millimeters of mercury?"}, "factor": 760.0},
|
||||
{"slug": "attograms-to-femtograms", "name": "Attograms to Femtograms \u2013 To compare particle masses, convert 150 attograms into femtograms.", "category": "weight", "type": "standard", "labels": {"in1": "Attograms", "in2": "Femtograms \u2013 To compare particle masses, convert 150 attograms into femtograms."}, "factor": 0.001},
|
||||
{"slug": "inches-to-feet", "name": "Inches to Feet", "category": "length", "type": "standard", "teaser": "If a shelf spans 36 inches, how many feet of trim does it cover?", "labels": {"in1": "Inches", "in2": "Feet"}, "factor": 12.0},
|
||||
{"slug": "kilograms-to-pounds", "name": "Kilograms to Pounds", "category": "weight", "type": "standard", "labels": {"in1": "Kilograms", "in2": "Pounds"}, "factor": 2.20462262},
|
||||
{"slug": "miles-to-kilometers", "name": "Miles to Kilometers", "category": "length", "type": "standard", "teaser": "Planning a road trip, how many kilometers will 120 miles travel?", "labels": {"in1": "Miles", "in2": "Kilometers"}, "factor": 0.62137119, "hidden": true},
|
||||
{"slug": "acres-to-hectares", "name": "Acres to Hectares", "category": "area", "type": "standard", "teaser": "A 50-acre farm prompts the question: how many hectares does it include?", "labels": {"in1": "Acres", "in2": "Hectares"}, "factor": 0.404686},
|
||||
{"slug": "acres-to-square-feet", "name": "Acres to Square Feet", "category": "length", "type": "standard", "teaser": "For the listing, convert 2 acres into square feet to describe the lot size.", "labels": {"in1": "Acres", "in2": "Square Feet"}, "factor": 43560.0},
|
||||
{"slug": "angstroms-to-nanometers", "name": "Angstroms to Nanometers", "category": "length", "type": "standard", "teaser": "A materials scientist changes 25 angstroms into nanometers to describe a film thickness.", "labels": {"in1": "Angstroms", "in2": "Nanometers"}, "factor": 0.1},
|
||||
{"slug": "apothecary-ounces-to-grams", "name": "Apothecary Ounces to Grams", "category": "weight", "type": "standard", "teaser": "Preparing a tincture, how many grams are packed in 8 apothecary ounces?", "labels": {"in1": "Apothecary Ounces", "in2": "Grams"}, "factor": 31.1034768},
|
||||
{"slug": "astronomical-units-to-light-years", "name": "Astronomical Units to Light Years", "category": "time", "type": "standard", "teaser": "The astronomer asks how many light years correspond to 5 astronomical units.", "labels": {"in1": "Astronomical Units", "in2": "Light Years"}, "factor": 1.58125074e-05, "hidden": true},
|
||||
{"slug": "atmosphere-to-mmhg", "name": "Atmosphere to mmHg", "category": "pressure", "type": "standard", "teaser": "In the lab, what is 2 atmospheres of pressure in millimeters of mercury?", "labels": {"in1": "Atmosphere", "in2": "mmHg"}, "factor": 760.0},
|
||||
{"slug": "attograms-to-femtograms", "name": "Attograms to Femtograms", "category": "weight", "type": "standard", "teaser": "To compare particle masses, convert 150 attograms into femtograms.", "labels": {"in1": "Attograms", "in2": "Femtograms"}, "factor": 0.001, "hidden": true},
|
||||
{"slug": "bar-to-pascal", "name": "Bar to Pascal", "category": "pressure", "type": "standard", "labels": {"in1": "Bar", "in2": "Pascal"}, "factor": 100000.0},
|
||||
{"slug": "bar-to-psi", "name": "Bar to PSI", "category": "pressure", "type": "standard", "labels": {"in1": "Bar", "in2": "PSI"}, "factor": 14.5037738},
|
||||
{"slug": "becquerel-to-curie", "name": "Becquerel to Curie", "category": "radiation", "type": "standard", "labels": {"in1": "Becquerel", "in2": "Curie"}, "factor": 2.7027027e-11, "hidden": true},
|
||||
@@ -94,7 +95,7 @@ export const calculators: CalculatorDef[] = [
|
||||
{"slug": "grams-to-pennyweights", "name": "Grams to Pennyweights", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Pennyweights"}, "factor": 0.643014931, "hidden": true},
|
||||
{"slug": "grams-to-troy-ounces", "name": "Grams to Troy Ounces", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Troy Ounces"}, "factor": 0.0321507466, "hidden": true},
|
||||
{"slug": "gray-to-rad", "name": "Gray to Rad", "category": "radiation", "type": "standard", "labels": {"in1": "Gray", "in2": "Rad"}, "factor": 100.0},
|
||||
{"slug": "grams-to-apothecary-ounces", "name": "Grams to Apothecary Ounces", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Apothecary Ounces"}, "factor": 0.0321507466, "hidden": true},
|
||||
{"slug": "grams-to-apothecary-ounces", "name": "Grams to Apothecary ounces", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Apothecary ounces"}, "factor": 0.0321507466, "hidden": true},
|
||||
{"slug": "grams-to-carats", "name": "Grams to Carats", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Carats"}, "factor": 5.0},
|
||||
{"slug": "grams-to-grains", "name": "Grams to Grains", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Grains"}, "factor": 15.4323584},
|
||||
{"slug": "horsepower-to-kilowatts", "name": "Horsepower to Kilowatts", "category": "power", "type": "standard", "labels": {"in1": "Horsepower", "in2": "Kilowatts"}, "factor": 0.745699872, "hidden": true},
|
||||
@@ -123,7 +124,6 @@ export const calculators: CalculatorDef[] = [
|
||||
{"slug": "milligrams-to-grams", "name": "Milligrams to Grams", "category": "weight", "type": "standard", "labels": {"in1": "Milligrams", "in2": "Grams"}, "factor": 0.001, "hidden": true},
|
||||
{"slug": "millibars-to-pascals", "name": "Millibars to Pascals", "category": "pressure", "type": "standard", "labels": {"in1": "Millibars", "in2": "Pascals"}, "factor": 100.0},
|
||||
{"slug": "millimeters-of-mercury-to-pascals", "name": "Millimeters of Mercury to Pascals", "category": "length", "type": "standard", "labels": {"in1": "Millimeters of Mercury", "in2": "Pascals"}, "factor": 133.322},
|
||||
{"slug": "millimeters-of-mercury-to-pascals", "name": "Millimeters of Mercury to Pascals", "category": "length", "type": "standard", "labels": {"in1": "Millimeters of Mercury", "in2": "Pascals"}, "factor": 133.322},
|
||||
{"slug": "meters-per-second-to-feet-per-second", "name": "Meters per second to Feet per second", "category": "length", "type": "standard", "labels": {"in1": "Meters per second", "in2": "Feet per second"}, "factor": 3.28084},
|
||||
{"slug": "meters-per-second-to-miles-per-hour", "name": "Meters per second to Miles per hour", "category": "length", "type": "standard", "labels": {"in1": "Meters per second", "in2": "Miles per hour"}, "factor": 2.23694},
|
||||
{"slug": "meters-per-second-to-yards-per-second", "name": "Meters per second to Yards per second", "category": "length", "type": "standard", "labels": {"in1": "Meters per second", "in2": "Yards per second"}, "factor": 1.09361},
|
||||
@@ -178,12 +178,8 @@ export const calculators: CalculatorDef[] = [
|
||||
{"slug": "decimal-to-binary", "name": "Decimal to Binary", "category": "number-systems", "type": "base", "labels": {"in1": "Decimal", "in2": "Binary"}, "toBase": 2, "fromBase": 10, "hidden": true},
|
||||
{"slug": "decimal-to-hex", "name": "Decimal to Hex", "category": "number-systems", "type": "base", "labels": {"in1": "Decimal", "in2": "Hex"}, "toBase": 16, "fromBase": 10},
|
||||
{"slug": "decimal-to-octal", "name": "Decimal to Octal", "category": "number-systems", "type": "standard", "labels": {"in1": "Decimal", "in2": "Octal"}},
|
||||
{"slug": "grams-to-apothecary-ounces", "name": "Grams to Apothecary ounces", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Apothecary ounces"}, "factor": 0.0321507466, "hidden": true},
|
||||
{"slug": "grams-to-carats", "name": "Grams to Carats", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Carats"}, "factor": 5.0},
|
||||
{"slug": "grams-to-grains", "name": "Grams to Grains", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Grains"}, "factor": 15.4323584},
|
||||
{"slug": "hex-to-binary", "name": "Hex to Binary", "category": "number-systems", "type": "base", "labels": {"in1": "Hex", "in2": "Binary"}, "toBase": 2, "fromBase": 16, "hidden": true},
|
||||
{"slug": "hex-to-decimal", "name": "Hex to Decimal", "category": "number-systems", "type": "standard", "labels": {"in1": "Hex", "in2": "Decimal"}, "hidden": true},
|
||||
{"slug": "kilograms-to-pounds", "name": "Kilograms to Pounds", "category": "weight", "type": "standard", "labels": {"in1": "Kilograms", "in2": "Pounds"}, "factor": 2.20462262},
|
||||
{"slug": "watts-to-amps", "name": "Watts to amps", "category": "power", "type": "3col", "labels": {"in1": "Watts", "in2": "amps", "in3": "Volts"}, "hidden": true},
|
||||
{"slug": "volts-to-amps", "name": "Volts to amps", "category": "electrical", "type": "3col", "labels": {"in1": "Volts", "in2": "amps", "in3": "Result"}, "hidden": true},
|
||||
{"slug": "siemens-to-ohms", "name": "Siemens to ohms", "category": "electrical", "type": "inverse", "labels": {"in1": "Siemens", "in2": "ohms"}, "hidden": true},
|
||||
@@ -258,86 +254,86 @@ export const calculators: CalculatorDef[] = [
|
||||
{"slug": "nanograms-to-picograms", "name": "Nanograms to picograms", "category": "weight", "type": "standard", "labels": {"in1": "Nanograms", "in2": "picograms"}, "factor": 1000.0},
|
||||
{"slug": "metric-tons-to-long-tons", "name": "Metric tons to long tons", "category": "weight", "type": "standard", "labels": {"in1": "Metric tons", "in2": "long tons"}, "factor": 0.9842},
|
||||
{"slug": "lumens-to-candela", "name": "Lumens to candela", "category": "light", "type": "standard", "labels": {"in1": "Lumens", "in2": "candela"}, "factor": 0.079577, "hidden": true},
|
||||
{"slug": "gsm-to-ounces-per-sq-yard", "name": "GSM to Ounces per sq yard \u2013 Convert GSM to Ounces per sq yard instantly.", "category": "length", "type": "standard", "labels": {"in1": "GSM", "in2": "Ounces per sq yard \u2013 Convert GSM to Ounces per sq yard instantly."}, "factor": 0.02952},
|
||||
{"slug": "hands-to-centimeters", "name": "Hands to Centimeters \u2013 Convert Hands to Centimeters instantly.", "category": "length", "type": "standard", "labels": {"in1": "Hands", "in2": "Centimeters \u2013 Convert Hands to Centimeters instantly."}, "factor": 10.16},
|
||||
{"slug": "hands-to-inches", "name": "Hands to Inches \u2013 Convert Hands to Inches instantly.", "category": "length", "type": "standard", "labels": {"in1": "Hands", "in2": "Inches \u2013 Convert Hands to Inches instantly."}, "factor": 4.0},
|
||||
{"slug": "hartree-to-electron-volts", "name": "Hartree to Electron-volts \u2013 Convert Hartree to Electron-volts instantly.", "category": "energy", "type": "standard", "labels": {"in1": "Hartree", "in2": "Electron-volts \u2013 Convert Hartree to Electron-volts instantly."}, "factor": 27.2114},
|
||||
{"slug": "hectares-to-ares", "name": "Hectares to Ares \u2013 Convert Hectares to Ares instantly.", "category": "area", "type": "standard", "labels": {"in1": "Hectares", "in2": "Ares \u2013 Convert Hectares to Ares instantly."}, "factor": 100.0},
|
||||
{"slug": "hectares-to-square-feet", "name": "Hectares to Square Feet \u2013 Convert Hectares to Square Feet instantly.", "category": "length", "type": "standard", "labels": {"in1": "Hectares", "in2": "Square Feet \u2013 Convert Hectares to Square Feet instantly."}, "factor": 107639.0},
|
||||
{"slug": "hectares-to-square-kilometers", "name": "Hectares to Square Kilometers \u2013 Convert Hectares to Square Kilometers instantly.", "category": "length", "type": "standard", "labels": {"in1": "Hectares", "in2": "Square Kilometers \u2013 Convert Hectares to Square Kilometers instantly."}, "factor": 0.01},
|
||||
{"slug": "hectares-to-square-meters", "name": "Hectares to Square Meters \u2013 Convert Hectares to Square Meters instantly.", "category": "length", "type": "standard", "labels": {"in1": "Hectares", "in2": "Square Meters \u2013 Convert Hectares to Square Meters instantly."}, "factor": 10000.0},
|
||||
{"slug": "hectopascals-to-atmosphere", "name": "Hectopascals to Atmosphere \u2013 Convert Hectopascals to Atmosphere instantly.", "category": "pressure", "type": "standard", "labels": {"in1": "Hectopascals", "in2": "Atmosphere \u2013 Convert Hectopascals to Atmosphere instantly."}, "factor": 0.000986923},
|
||||
{"slug": "hectopascals-to-bar", "name": "Hectopascals to Bar \u2013 Convert Hectopascals to Bar instantly.", "category": "pressure", "type": "standard", "labels": {"in1": "Hectopascals", "in2": "Bar \u2013 Convert Hectopascals to Bar instantly."}, "factor": 0.001},
|
||||
{"slug": "hectopascals-to-psi", "name": "Hectopascals to PSI \u2013 Convert Hectopascals to PSI instantly.", "category": "pressure", "type": "standard", "labels": {"in1": "Hectopascals", "in2": "PSI \u2013 Convert Hectopascals to PSI instantly."}, "factor": 0.0145038},
|
||||
{"slug": "henries-to-millihenries", "name": "Henries to Millihenries \u2013 Convert Henries to Millihenries instantly.", "category": "other", "type": "standard", "labels": {"in1": "Henries", "in2": "Millihenries \u2013 Convert Henries to Millihenries instantly."}, "factor": 1000.0},
|
||||
{"slug": "hertz-to-kilohertz", "name": "Hertz to Kilohertz \u2013 Convert Hertz to Kilohertz instantly.", "category": "other", "type": "standard", "labels": {"in1": "Hertz", "in2": "Kilohertz \u2013 Convert Hertz to Kilohertz instantly."}, "factor": 0.001},
|
||||
{"slug": "hertz-to-rpm", "name": "Hertz to RPM \u2013 Convert Hertz to RPM instantly.", "category": "speed", "type": "standard", "labels": {"in1": "Hertz", "in2": "RPM \u2013 Convert Hertz to RPM instantly."}, "factor": 60.0},
|
||||
{"slug": "hex-to-octal", "name": "Hex to Octal \u2013 Convert Hex to Octal instantly.", "category": "number-systems", "type": "base", "labels": {"in1": "Hex", "in2": "Octal \u2013 Convert Hex to Octal instantly."}, "fromBase": 16, "toBase": 8},
|
||||
{"slug": "hogshead-to-liters", "name": "Hogshead to Liters \u2013 Convert Hogshead (US) to Liters instantly.", "category": "volume", "type": "standard", "labels": {"in1": "Hogshead", "in2": "Liters \u2013 Convert Hogshead (US) to Liters instantly."}, "factor": 238.481},
|
||||
{"slug": "horsepower-to-btuhour", "name": "Horsepower to BTU/hour \u2013 Convert Horsepower to BTU/hour instantly.", "category": "energy", "type": "standard", "labels": {"in1": "Horsepower", "in2": "BTU/hour \u2013 Convert Horsepower to BTU/hour instantly."}, "factor": 2544.43},
|
||||
{"slug": "horsepower-to-tons-of-refrigeration", "name": "Horsepower to Tons of Refrigeration \u2013 Convert Horsepower to Tons of Refrigeration instantly.", "category": "weight", "type": "standard", "labels": {"in1": "Horsepower", "in2": "Tons of Refrigeration \u2013 Convert Horsepower to Tons of Refrigeration instantly."}, "factor": 0.284345},
|
||||
{"slug": "horsepower-to-watts", "name": "Horsepower to Watts \u2013 Convert Horsepower to Watts instantly.", "category": "power", "type": "standard", "labels": {"in1": "Horsepower", "in2": "Watts \u2013 Convert Horsepower to Watts instantly."}, "factor": 745.7},
|
||||
{"slug": "hours-to-seconds", "name": "Hours to Seconds \u2013 Convert Hours to Seconds instantly.", "category": "time", "type": "standard", "labels": {"in1": "Hours", "in2": "Seconds \u2013 Convert Hours to Seconds instantly."}, "factor": 3600.0},
|
||||
{"slug": "hours-to-weeks", "name": "Hours to Weeks \u2013 Convert Hours to Weeks instantly.", "category": "time", "type": "standard", "labels": {"in1": "Hours", "in2": "Weeks \u2013 Convert Hours to Weeks instantly."}, "factor": 0.00595238},
|
||||
{"slug": "hundredweight-to-kilograms", "name": "Hundredweight (cwt) to Kilograms \u2013 Convert Hundredweight (cwt) to Kilograms instantly.", "category": "weight", "type": "standard", "labels": {"in1": "Hundredweight (cwt)", "in2": "Kilograms \u2013 Convert Hundredweight (cwt) to Kilograms instantly."}, "factor": 45.3592},
|
||||
{"slug": "imperial-fl-oz-to-us-fl-oz", "name": "Imperial fl oz to US fl oz \u2013 Convert Imperial fl oz to US fl oz instantly.", "category": "other", "type": "standard", "labels": {"in1": "Imperial fl oz", "in2": "US fl oz \u2013 Convert Imperial fl oz to US fl oz instantly."}, "factor": 1.20095},
|
||||
{"slug": "imperial-gallons-to-liters", "name": "Imperial gallons to Liters \u2013 Convert Imperial gallons to Liters instantly.", "category": "volume", "type": "standard", "labels": {"in1": "Imperial gallons", "in2": "Liters \u2013 Convert Imperial gallons to Liters instantly."}, "factor": 4.54609},
|
||||
{"slug": "imperial-gallons-to-us-gallons", "name": "Imperial gallons to US gallons \u2013 Convert Imperial gallons to US gallons instantly.", "category": "volume", "type": "standard", "labels": {"in1": "Imperial gallons", "in2": "US gallons \u2013 Convert Imperial gallons to US gallons instantly."}, "factor": 1.20095},
|
||||
{"slug": "imperial-pints-to-us-pints", "name": "Imperial pints to US pints \u2013 Convert Imperial pints to US pints instantly.", "category": "volume", "type": "standard", "labels": {"in1": "Imperial pints", "in2": "US pints \u2013 Convert Imperial pints to US pints instantly."}, "factor": 1.20095},
|
||||
{"slug": "inch-pounds-to-foot-pounds", "name": "Inch-Pounds to Foot-Pounds \u2013 Convert Inch-Pounds to Foot-Pounds instantly.", "category": "length", "type": "standard", "labels": {"in1": "Inch-Pounds", "in2": "Foot-Pounds \u2013 Convert Inch-Pounds to Foot-Pounds instantly."}, "factor": 0.0833333},
|
||||
{"slug": "inch-pounds-to-newton-meters", "name": "Inch-Pounds to Newton-Meters \u2013 Convert Inch-Pounds to Newton-Meters instantly.", "category": "length", "type": "standard", "labels": {"in1": "Inch-Pounds", "in2": "Newton-Meters \u2013 Convert Inch-Pounds to Newton-Meters instantly."}, "factor": 0.112985},
|
||||
{"slug": "inches-of-water-to-psi", "name": "Inches of Water to PSI \u2013 Convert Inches of Water to PSI instantly.", "category": "length", "type": "standard", "labels": {"in1": "Inches of Water", "in2": "PSI \u2013 Convert Inches of Water to PSI instantly."}, "factor": 0.0360912},
|
||||
{"slug": "inches-per-second-to-cm-per-second", "name": "Inches per second to cm per second \u2013 Convert Inches per second to Centimeters per second instantly.", "category": "length", "type": "standard", "labels": {"in1": "Inches per second", "in2": "cm per second \u2013 Convert Inches per second to Centimeters per second instantly."}, "factor": 2.54},
|
||||
{"slug": "inches-to-meters", "name": "Inches to Meters \u2013 Convert Inches to Meters instantly.", "category": "length", "type": "standard", "labels": {"in1": "Inches", "in2": "Meters \u2013 Convert Inches to Meters instantly."}, "factor": 0.0254},
|
||||
{"slug": "inches-to-points", "name": "Inches to Points \u2013 Convert Inches to Points instantly.", "category": "length", "type": "standard", "labels": {"in1": "Inches", "in2": "Points \u2013 Convert Inches to Points instantly."}, "factor": 72.0},
|
||||
{"slug": "inches-to-yards", "name": "Inches to Yards \u2013 Convert Inches to Yards instantly.", "category": "length", "type": "standard", "labels": {"in1": "Inches", "in2": "Yards \u2013 Convert Inches to Yards instantly."}, "factor": 0.0277778},
|
||||
{"slug": "jansky-to-watts-per-square-meter-per-hertz", "name": "Jansky to Watts per sq meter per Hertz \u2013 Convert Jansky to Watts per square meter per Hertz instantly.", "category": "length", "type": "standard", "labels": {"in1": "Jansky", "in2": "Watts per sq meter per Hertz \u2013 Convert Jansky to Watts per square meter per Hertz instantly."}, "factor": 1e-26},
|
||||
{"slug": "jiffies-to-seconds", "name": "Jiffies to Seconds \u2013 Convert Jiffies to Seconds instantly.", "category": "time", "type": "standard", "labels": {"in1": "Jiffies", "in2": "Seconds \u2013 Convert Jiffies to Seconds instantly."}, "factor": 0.01},
|
||||
{"slug": "jiggers-to-milliliters", "name": "Jiggers to Milliliters \u2013 Convert Jiggers to Milliliters instantly.", "category": "volume", "type": "standard", "labels": {"in1": "Jiggers", "in2": "Milliliters \u2013 Convert Jiggers to Milliliters instantly."}, "factor": 44.3603},
|
||||
{"slug": "joules-to-btu", "name": "Joules to BTU \u2013 Convert Joules to BTU instantly.", "category": "energy", "type": "standard", "labels": {"in1": "Joules", "in2": "BTU \u2013 Convert Joules to BTU instantly."}, "factor": 0.000947817},
|
||||
{"slug": "joules-to-electron-volts", "name": "Joules to Electron-volts \u2013 Convert Joules to Electron-volts instantly.", "category": "energy", "type": "standard", "labels": {"in1": "Joules", "in2": "Electron-volts \u2013 Convert Joules to Electron-volts instantly."}, "factor": 6.24151e+18},
|
||||
{"slug": "joules-to-foot-pounds", "name": "Joules to Foot-pounds \u2013 Convert Joules to Foot-pounds instantly.", "category": "weight", "type": "standard", "labels": {"in1": "Joules", "in2": "Foot-pounds \u2013 Convert Joules to Foot-pounds instantly."}, "factor": 0.737562},
|
||||
{"slug": "joules-to-kilowatt-hours", "name": "Joules to Kilowatt-hours \u2013 Convert Joules to Kilowatt-hours instantly.", "category": "energy", "type": "standard", "labels": {"in1": "Joules", "in2": "Kilowatt-hours \u2013 Convert Joules to Kilowatt-hours instantly."}, "factor": 2.77778e-07},
|
||||
{"slug": "cubic-feet-to-gallons", "name": "Cubic Feet to Gallons \u2013 If a cistern volume reads three cubic feet, how many US gallons does that store?", "category": "length", "type": "standard", "labels": {"in1": "Cubic Feet", "in2": "Gallons \u2013 If a cistern volume reads three cubic feet, how many US gallons does that store?"}, "factor": 7.48052},
|
||||
{"slug": "cubic-meters-to-cubic-feet", "name": "Cubic Meters to Cubic Feet \u2013 A freight crate is two cubic meters; how many cubic feet of cargo space is that?", "category": "length", "type": "standard", "labels": {"in1": "Cubic Meters", "in2": "Cubic Feet \u2013 A freight crate is two cubic meters; how many cubic feet of cargo space is that?"}, "factor": 35.3147},
|
||||
{"slug": "foot-candles-to-lux", "name": "Foot-candles to Lux \u2013 Gallery staff want to match 150 foot-candles; what does that translate to in lux?", "category": "light", "type": "standard", "labels": {"in1": "Foot-candles", "in2": "Lux \u2013 Gallery staff want to match 150 foot-candles; what does that translate to in lux?"}, "factor": 10.7639},
|
||||
{"slug": "foot-pounds-energy-to-joules", "name": "Foot-pounds (energy) to Joules \u2013 The engine produces five foot-pounds of work; how many joules is that?", "category": "length", "type": "standard", "labels": {"in1": "Foot-pounds (energy)", "in2": "Joules \u2013 The engine produces five foot-pounds of work; how many joules is that?"}, "factor": 1.35581795},
|
||||
{"slug": "foot-pounds-to-inch-pounds", "name": "Foot-Pounds to Inch-Pounds \u2013 A torque spec calls for two foot-pounds; how many inch-pounds is that?", "category": "length", "type": "standard", "labels": {"in1": "Foot-Pounds", "in2": "Inch-Pounds \u2013 A torque spec calls for two foot-pounds; how many inch-pounds is that?"}, "factor": 12.0},
|
||||
{"slug": "fortnights-to-days", "name": "Fortnights to Days \u2013 The rental period lasts three fortnights; how many days will be billed?", "category": "time", "type": "standard", "labels": {"in1": "Fortnights", "in2": "Days \u2013 The rental period lasts three fortnights; how many days will be billed?"}, "factor": 14.0},
|
||||
{"slug": "furlongs-per-fortnight-to-meters-per-second", "name": "Furlongs per fortnight to m/s \u2013 Traveling at one furlong per fortnight, what speed in meters per second is that?", "category": "length", "type": "standard", "labels": {"in1": "Furlongs per fortnight", "in2": "m/s \u2013 Traveling at one furlong per fortnight, what speed in meters per second is that?"}, "factor": 1.336e-05},
|
||||
{"slug": "furlongs-to-meters", "name": "Furlongs to Meters \u2013 A race distance of two furlongs equals how many meters?", "category": "length", "type": "standard", "labels": {"in1": "Furlongs", "in2": "Meters \u2013 A race distance of two furlongs equals how many meters?"}, "factor": 201.168},
|
||||
{"slug": "furlongs-to-miles", "name": "Furlongs to Miles \u2013 A course covers eight furlongs; how far is that in miles?", "category": "length", "type": "standard", "labels": {"in1": "Furlongs", "in2": "Miles \u2013 A course covers eight furlongs; how far is that in miles?"}, "factor": 0.125},
|
||||
{"slug": "gallons-per-minute-to-cubic-feet-per-second", "name": "Gallons per minute to CFS \u2013 A pump pushes 200 gpm; what is that flow rate in cubic feet per second?", "category": "length", "type": "standard", "labels": {"in1": "Gallons per minute", "in2": "CFS \u2013 A pump pushes 200 gpm; what is that flow rate in cubic feet per second?"}, "factor": 0.00222801},
|
||||
{"slug": "gallons-per-minute-to-liters-per-minute", "name": "Gallons per minute to Liters per minute \u2013 A faucet flows at three gpm; what is that in liters per minute?", "category": "volume", "type": "standard", "labels": {"in1": "Gallons per minute", "in2": "Liters per minute \u2013 A faucet flows at three gpm; what is that in liters per minute?"}, "factor": 3.78541},
|
||||
{"slug": "gallons-to-barrel-us-oil", "name": "Gallons to Barrel (US oil) \u2013 A tanker carries 840 gallons; how many US oil barrels is that?", "category": "volume", "type": "standard", "labels": {"in1": "Gallons", "in2": "Barrel (US oil) \u2013 A tanker carries 840 gallons; how many US oil barrels is that?"}, "factor": 0.0238095238},
|
||||
{"slug": "gallons-to-cubic-feet", "name": "Gallons to Cubic Feet \u2013 A tank holds fifty gallons; how many cubic feet does that represent?", "category": "length", "type": "standard", "labels": {"in1": "Gallons", "in2": "Cubic Feet \u2013 A tank holds fifty gallons; how many cubic feet does that represent?"}, "factor": 0.133681},
|
||||
{"slug": "gallons-to-cubic-meters", "name": "Gallons to Cubic Meters \u2013 A reservoir stores 1,200 gallons; what is the cubic meter value?", "category": "length", "type": "standard", "labels": {"in1": "Gallons", "in2": "Cubic Meters \u2013 A reservoir stores 1,200 gallons; what is the cubic meter value?"}, "factor": 0.00378541},
|
||||
{"slug": "gallons-to-cups", "name": "Gallons to Cups \u2013 A recipe needs two gallons; how many cups should you measure?", "category": "volume", "type": "standard", "labels": {"in1": "Gallons", "in2": "Cups \u2013 A recipe needs two gallons; how many cups should you measure?"}, "factor": 16.0},
|
||||
{"slug": "gallons-to-fluid-ounces", "name": "Gallons to Fluid Ounces \u2013 A pitcher pours three gallons; how many fluid ounces is that?", "category": "weight", "type": "standard", "labels": {"in1": "Gallons", "in2": "Fluid Ounces \u2013 A pitcher pours three gallons; how many fluid ounces is that?"}, "factor": 128.0},
|
||||
{"slug": "gallons-to-pints", "name": "Gallons to Pints \u2013 Pouring one gallon equals how many pints for serving?", "category": "volume", "type": "standard", "labels": {"in1": "Gallons", "in2": "Pints \u2013 Pouring one gallon equals how many pints for serving?"}, "factor": 8.0},
|
||||
{"slug": "gallons-to-quarts", "name": "Gallons to Quarts \u2013 Four gallons convert to how many quarts for canning?", "category": "volume", "type": "standard", "labels": {"in1": "Gallons", "in2": "Quarts \u2013 Four gallons convert to how many quarts for canning?"}, "factor": 4.0},
|
||||
{"slug": "gamma-mass-to-micrograms", "name": "Gamma (mass) to Micrograms \u2013 A lab note shows gamma units; what is that in micrograms?", "category": "weight", "type": "standard", "labels": {"in1": "Gamma (mass)", "in2": "Micrograms \u2013 A lab note shows gamma units; what is that in micrograms?"}},
|
||||
{"slug": "gauss-to-tesla", "name": "Gauss to Tesla \u2013 A field reads five thousand gauss; what is that in tesla?", "category": "other", "type": "standard", "labels": {"in1": "Gauss", "in2": "Tesla \u2013 A field reads five thousand gauss; what is that in tesla?"}, "factor": 0.0001},
|
||||
{"slug": "gbps-to-mbps", "name": "Gbps to Mbps \u2013 A fiber uplink reports 10 Gbps; how many megabits per second of capacity is that?", "category": "speed", "type": "standard", "labels": {"in1": "Gbps", "in2": "Mbps \u2013 A fiber uplink reports 10 Gbps; how many megabits per second of capacity is that?"}, "factor": 1000.0},
|
||||
{"slug": "gibibytes-to-gigabytes", "name": "Gibibytes to Gigabytes \u2013 A backup file is 2 GiB; how many gigabytes will the storage quota show?", "category": "data", "type": "standard", "labels": {"in1": "Gibibytes", "in2": "Gigabytes \u2013 A backup file is 2 GiB; how many gigabytes will the storage quota show?"}, "factor": 1.073741824},
|
||||
{"slug": "gigabits-to-megabits", "name": "Gigabits to Megabits \u2013 A carrier promises 3 gigabits per second; how many megabits is the link rated for?", "category": "speed", "type": "standard", "labels": {"in1": "Gigabits", "in2": "Megabits \u2013 A carrier promises 3 gigabits per second; how many megabits is the link rated for?"}, "factor": 1000.0},
|
||||
{"slug": "gigabytes-to-bytes", "name": "Gigabytes to Bytes \u2013 A download weighs 5 gigabytes; how many bytes does that represent?", "category": "data", "type": "standard", "labels": {"in1": "Gigabytes", "in2": "Bytes \u2013 A download weighs 5 gigabytes; how many bytes does that represent?"}, "factor": 1000000000.0},
|
||||
{"slug": "gigabytes-to-gibibytes", "name": "Gigabytes to Gibibytes \u2013 A storage plan advertises 1,000 GB; how many gibibytes is that?", "category": "data", "type": "standard", "labels": {"in1": "Gigabytes", "in2": "Gibibytes \u2013 A storage plan advertises 1,000 GB; how many gibibytes is that?"}, "factor": 0.931322575},
|
||||
{"slug": "gigabytes-to-petabytes", "name": "Gigabytes to Petabytes \u2013 A data warehouse holds 400,000 gigabytes; how many petabytes is that?", "category": "data", "type": "standard", "labels": {"in1": "Gigabytes", "in2": "Petabytes \u2013 A data warehouse holds 400,000 gigabytes; how many petabytes is that?"}, "factor": 1e-06},
|
||||
{"slug": "gigahertz-to-megahertz", "name": "Gigahertz to Megahertz \u2013 A processor is rated at 3 GHz; how many megahertz is that clock speed?", "category": "other", "type": "standard", "labels": {"in1": "Gigahertz", "in2": "Megahertz \u2013 A processor is rated at 3 GHz; how many megahertz is that clock speed?"}, "factor": 1000.0},
|
||||
{"slug": "gill-to-milliliters", "name": "Gill to Milliliters \u2013 A bartender pours two US gills; how many milliliters should the glass hold?", "category": "volume", "type": "standard", "labels": {"in1": "Gill", "in2": "Milliliters \u2013 A bartender pours two US gills; how many milliliters should the glass hold?"}, "factor": 118.294},
|
||||
{"slug": "gradians-to-degrees", "name": "Gradians to Degrees \u2013 A surveyor logs 100 gradians; what is that angle in degrees?", "category": "angle", "type": "standard", "labels": {"in1": "Gradians", "in2": "Degrees \u2013 A surveyor logs 100 gradians; what is that angle in degrees?"}, "factor": 0.9},
|
||||
{"slug": "gradians-to-radians", "name": "Gradians to Radians \u2013 A control dial sweeps 200 gradians; what is that rotation in radians?", "category": "angle", "type": "standard", "labels": {"in1": "Gradians", "in2": "Radians \u2013 A control dial sweeps 200 gradians; what is that rotation in radians?"}, "factor": 0.01570796},
|
||||
{"slug": "grains-to-ounces", "name": "Grains to Ounces \u2013 A jewelry batch weighs 100 grains; how many ounces is that?", "category": "weight", "type": "standard", "labels": {"in1": "Grains", "in2": "Ounces \u2013 A jewelry batch weighs 100 grains; how many ounces is that?"}, "factor": 0.002285714},
|
||||
{"slug": "grams-per-cubic-centimeter-to-kilograms-per-liter", "name": "Grams per cubic centimeter to Kilograms per liter \u2013 A fluid density of 1 g/cm\u00b3 equals how many kg/L?", "category": "length", "type": "standard", "labels": {"in1": "Grams per cubic centimeter", "in2": "Kilograms per liter \u2013 A fluid density of 1 g/cm\u00b3 equals how many kg/L?"}},
|
||||
{"slug": "grams-per-milliliter-to-kilograms-per-cubic-meter", "name": "Grams per milliliter to Kilograms per cubic meter \u2013 A solution at 1.2 g/mL corresponds to how many kg/m\u00b3?", "category": "length", "type": "standard", "labels": {"in1": "Grams per milliliter", "in2": "Kilograms per cubic meter \u2013 A solution at 1.2 g/mL corresponds to how many kg/m\u00b3?"}, "factor": 1000.0},
|
||||
{"slug": "grams-to-drams", "name": "Grams to Drams \u2013 A tea blend calls for 2 grams; how many drams should you measure?", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Drams \u2013 A tea blend calls for 2 grams; how many drams should you measure?"}, "factor": 0.564383},
|
||||
{"slug": "grams-to-kilograms", "name": "Grams to Kilograms \u2013 A parcel weighs 3,000 grams; how many kilograms is that weight?", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Kilograms \u2013 A parcel weighs 3,000 grams; how many kilograms is that weight?"}, "factor": 0.001},
|
||||
{"slug": "grams-to-momme", "name": "Grams to Momme \u2013 A silk roll weighs 20 grams; how many momme does that equal?", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Momme \u2013 A silk roll weighs 20 grams; how many momme does that equal?"}, "factor": 0.2666667},
|
||||
{"slug": "grams-to-pounds", "name": "Grams to Pounds \u2013 A container measures 200 grams; how many pounds does the load represent?", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Pounds \u2013 A container measures 200 grams; how many pounds does the load represent?"}, "factor": 0.00220462},
|
||||
{"slug": "grams-to-scruples", "name": "Grams to Scruples \u2013 A pharmacy formula needs 10 grams; what is that in scruples?", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Scruples \u2013 A pharmacy formula needs 10 grams; what is that in scruples?"}, "factor": 0.771605},
|
||||
{"slug": "grams-to-tolas", "name": "Grams to Tolas \u2013 A gold bar weighs 5 grams; how many tolas is that mass?", "category": "weight", "type": "standard", "labels": {"in1": "Grams", "in2": "Tolas \u2013 A gold bar weighs 5 grams; how many tolas is that mass?"}, "factor": 0.085735},
|
||||
{"slug": "gray-to-sievert", "name": "Gray to Sievert \u2013 A gamma exposure is 3 gray; how many sieverts is that for gamma/beta?", "category": "radiation", "type": "standard", "labels": {"in1": "Gray", "in2": "Sievert \u2013 A gamma exposure is 3 gray; how many sieverts is that for gamma/beta?"}},
|
||||
{"slug": "gsm-to-ounces-per-sq-yard", "name": "GSM to Ounces per sq yard", "category": "length", "type": "standard", "teaser": "Convert GSM to Ounces per sq yard instantly.", "labels": {"in1": "GSM", "in2": "Ounces per sq yard"}, "factor": 0.02952},
|
||||
{"slug": "hands-to-centimeters", "name": "Hands to Centimeters", "category": "length", "type": "standard", "teaser": "Convert Hands to Centimeters instantly.", "labels": {"in1": "Hands", "in2": "Centimeters"}, "factor": 10.16},
|
||||
{"slug": "hands-to-inches", "name": "Hands to Inches", "category": "length", "type": "standard", "teaser": "Convert Hands to Inches instantly.", "labels": {"in1": "Hands", "in2": "Inches"}, "factor": 4.0},
|
||||
{"slug": "hartree-to-electron-volts", "name": "Hartree to Electron-volts", "category": "energy", "type": "standard", "teaser": "Convert Hartree to Electron-volts instantly.", "labels": {"in1": "Hartree", "in2": "Electron-volts"}, "factor": 27.2114},
|
||||
{"slug": "hectares-to-ares", "name": "Hectares to Ares", "category": "area", "type": "standard", "teaser": "Convert Hectares to Ares instantly.", "labels": {"in1": "Hectares", "in2": "Ares"}, "factor": 100.0},
|
||||
{"slug": "hectares-to-square-feet", "name": "Hectares to Square Feet", "category": "length", "type": "standard", "teaser": "Convert Hectares to Square Feet instantly.", "labels": {"in1": "Hectares", "in2": "Square Feet"}, "factor": 107639.0},
|
||||
{"slug": "hectares-to-square-kilometers", "name": "Hectares to Square Kilometers", "category": "length", "type": "standard", "teaser": "Convert Hectares to Square Kilometers instantly.", "labels": {"in1": "Hectares", "in2": "Square Kilometers"}, "factor": 0.01},
|
||||
{"slug": "hectares-to-square-meters", "name": "Hectares to Square Meters", "category": "length", "type": "standard", "teaser": "Convert Hectares to Square Meters instantly.", "labels": {"in1": "Hectares", "in2": "Square Meters"}, "factor": 10000.0},
|
||||
{"slug": "hectopascals-to-atmosphere", "name": "Hectopascals to Atmosphere", "category": "pressure", "type": "standard", "teaser": "Convert Hectopascals to Atmosphere instantly.", "labels": {"in1": "Hectopascals", "in2": "Atmosphere"}, "factor": 0.000986923},
|
||||
{"slug": "hectopascals-to-bar", "name": "Hectopascals to Bar", "category": "pressure", "type": "standard", "teaser": "Convert Hectopascals to Bar instantly.", "labels": {"in1": "Hectopascals", "in2": "Bar"}, "factor": 0.001},
|
||||
{"slug": "hectopascals-to-psi", "name": "Hectopascals to PSI", "category": "pressure", "type": "standard", "teaser": "Convert Hectopascals to PSI instantly.", "labels": {"in1": "Hectopascals", "in2": "PSI"}, "factor": 0.0145038},
|
||||
{"slug": "henries-to-millihenries", "name": "Henries to Millihenries", "category": "other", "type": "standard", "teaser": "Convert Henries to Millihenries instantly.", "labels": {"in1": "Henries", "in2": "Millihenries"}, "factor": 1000.0},
|
||||
{"slug": "hertz-to-kilohertz", "name": "Hertz to Kilohertz", "category": "other", "type": "standard", "teaser": "Convert Hertz to Kilohertz instantly.", "labels": {"in1": "Hertz", "in2": "Kilohertz"}, "factor": 0.001},
|
||||
{"slug": "hertz-to-rpm", "name": "Hertz to RPM", "category": "speed", "type": "standard", "teaser": "Convert Hertz to RPM instantly.", "labels": {"in1": "Hertz", "in2": "RPM"}, "factor": 60.0},
|
||||
{"slug": "hex-to-octal", "name": "Hex to Octal", "category": "number-systems", "type": "base", "teaser": "Convert Hex to Octal instantly.", "labels": {"in1": "Hex", "in2": "Octal"}, "fromBase": 16, "toBase": 8},
|
||||
{"slug": "hogshead-to-liters", "name": "Hogshead to Liters", "category": "volume", "type": "standard", "teaser": "Convert Hogshead (US) to Liters instantly.", "labels": {"in1": "Hogshead", "in2": "Liters"}, "factor": 238.481},
|
||||
{"slug": "horsepower-to-btuhour", "name": "Horsepower to BTU/hour", "category": "energy", "type": "standard", "teaser": "Convert Horsepower to BTU/hour instantly.", "labels": {"in1": "Horsepower", "in2": "BTU/hour"}, "factor": 2544.43},
|
||||
{"slug": "horsepower-to-tons-of-refrigeration", "name": "Horsepower to Tons of Refrigeration", "category": "weight", "type": "standard", "teaser": "Convert Horsepower to Tons of Refrigeration instantly.", "labels": {"in1": "Horsepower", "in2": "Tons of Refrigeration"}, "factor": 0.284345},
|
||||
{"slug": "horsepower-to-watts", "name": "Horsepower to Watts", "category": "power", "type": "standard", "teaser": "Convert Horsepower to Watts instantly.", "labels": {"in1": "Horsepower", "in2": "Watts"}, "factor": 745.7},
|
||||
{"slug": "hours-to-seconds", "name": "Hours to Seconds", "category": "time", "type": "standard", "teaser": "Convert Hours to Seconds instantly.", "labels": {"in1": "Hours", "in2": "Seconds"}, "factor": 3600.0},
|
||||
{"slug": "hours-to-weeks", "name": "Hours to Weeks", "category": "time", "type": "standard", "teaser": "Convert Hours to Weeks instantly.", "labels": {"in1": "Hours", "in2": "Weeks"}, "factor": 0.00595238},
|
||||
{"slug": "hundredweight-to-kilograms", "name": "Hundredweight (cwt) to Kilograms", "category": "weight", "type": "standard", "teaser": "Convert Hundredweight (cwt) to Kilograms instantly.", "labels": {"in1": "Hundredweight (cwt)", "in2": "Kilograms"}, "factor": 45.3592},
|
||||
{"slug": "imperial-fl-oz-to-us-fl-oz", "name": "Imperial fl oz to US fl oz", "category": "other", "type": "standard", "teaser": "Convert Imperial fl oz to US fl oz instantly.", "labels": {"in1": "Imperial fl oz", "in2": "US fl oz"}, "factor": 1.20095},
|
||||
{"slug": "imperial-gallons-to-liters", "name": "Imperial gallons to Liters", "category": "volume", "type": "standard", "teaser": "Convert Imperial gallons to Liters instantly.", "labels": {"in1": "Imperial gallons", "in2": "Liters"}, "factor": 4.54609},
|
||||
{"slug": "imperial-gallons-to-us-gallons", "name": "Imperial gallons to US gallons", "category": "volume", "type": "standard", "teaser": "Convert Imperial gallons to US gallons instantly.", "labels": {"in1": "Imperial gallons", "in2": "US gallons"}, "factor": 1.20095},
|
||||
{"slug": "imperial-pints-to-us-pints", "name": "Imperial pints to US pints", "category": "volume", "type": "standard", "teaser": "Convert Imperial pints to US pints instantly.", "labels": {"in1": "Imperial pints", "in2": "US pints"}, "factor": 1.20095},
|
||||
{"slug": "inch-pounds-to-foot-pounds", "name": "Inch-Pounds to Foot-Pounds", "category": "length", "type": "standard", "teaser": "Convert Inch-Pounds to Foot-Pounds instantly.", "labels": {"in1": "Inch-Pounds", "in2": "Foot-Pounds"}, "factor": 0.0833333, "hidden": true},
|
||||
{"slug": "inch-pounds-to-newton-meters", "name": "Inch-Pounds to Newton-Meters", "category": "length", "type": "standard", "teaser": "Convert Inch-Pounds to Newton-Meters instantly.", "labels": {"in1": "Inch-Pounds", "in2": "Newton-Meters"}, "factor": 0.112985},
|
||||
{"slug": "inches-of-water-to-psi", "name": "Inches of Water to PSI", "category": "length", "type": "standard", "teaser": "Convert Inches of Water to PSI instantly.", "labels": {"in1": "Inches of Water", "in2": "PSI"}, "factor": 0.0360912},
|
||||
{"slug": "inches-per-second-to-cm-per-second", "name": "Inches per second to cm per second", "category": "length", "type": "standard", "teaser": "Convert Inches per second to Centimeters per second instantly.", "labels": {"in1": "Inches per second", "in2": "cm per second"}, "factor": 2.54},
|
||||
{"slug": "inches-to-meters", "name": "Inches to Meters", "category": "length", "type": "standard", "teaser": "Convert Inches to Meters instantly.", "labels": {"in1": "Inches", "in2": "Meters"}, "factor": 0.0254},
|
||||
{"slug": "inches-to-points", "name": "Inches to Points", "category": "length", "type": "standard", "teaser": "Convert Inches to Points instantly.", "labels": {"in1": "Inches", "in2": "Points"}, "factor": 72.0},
|
||||
{"slug": "inches-to-yards", "name": "Inches to Yards", "category": "length", "type": "standard", "teaser": "Convert Inches to Yards instantly.", "labels": {"in1": "Inches", "in2": "Yards"}, "factor": 0.0277778},
|
||||
{"slug": "jansky-to-watts-per-square-meter-per-hertz", "name": "Jansky to Watts per sq meter per Hertz", "category": "length", "type": "standard", "teaser": "Convert Jansky to Watts per square meter per Hertz instantly.", "labels": {"in1": "Jansky", "in2": "Watts per sq meter per Hertz"}, "factor": 1e-26},
|
||||
{"slug": "jiffies-to-seconds", "name": "Jiffies to Seconds", "category": "time", "type": "standard", "teaser": "Convert Jiffies to Seconds instantly.", "labels": {"in1": "Jiffies", "in2": "Seconds"}, "factor": 0.01},
|
||||
{"slug": "jiggers-to-milliliters", "name": "Jiggers to Milliliters", "category": "volume", "type": "standard", "teaser": "Convert Jiggers to Milliliters instantly.", "labels": {"in1": "Jiggers", "in2": "Milliliters"}, "factor": 44.3603},
|
||||
{"slug": "joules-to-btu", "name": "Joules to BTU", "category": "energy", "type": "standard", "teaser": "Convert Joules to BTU instantly.", "labels": {"in1": "Joules", "in2": "BTU"}, "factor": 0.000947817},
|
||||
{"slug": "joules-to-electron-volts", "name": "Joules to Electron-volts", "category": "energy", "type": "standard", "teaser": "Convert Joules to Electron-volts instantly.", "labels": {"in1": "Joules", "in2": "Electron-volts"}, "factor": 6.24151e+18},
|
||||
{"slug": "joules-to-foot-pounds", "name": "Joules to Foot-pounds", "category": "weight", "type": "standard", "teaser": "Convert Joules to Foot-pounds instantly.", "labels": {"in1": "Joules", "in2": "Foot-pounds"}, "factor": 0.737562},
|
||||
{"slug": "joules-to-kilowatt-hours", "name": "Joules to Kilowatt-hours", "category": "energy", "type": "standard", "teaser": "Convert Joules to Kilowatt-hours instantly.", "labels": {"in1": "Joules", "in2": "Kilowatt-hours"}, "factor": 2.77778e-07},
|
||||
{"slug": "cubic-feet-to-gallons", "name": "Cubic Feet to Gallons", "category": "length", "type": "standard", "teaser": "If a cistern volume reads three cubic feet, how many US gallons does that store?", "labels": {"in1": "Cubic Feet", "in2": "Gallons"}, "factor": 7.48052},
|
||||
{"slug": "cubic-meters-to-cubic-feet", "name": "Cubic Meters to Cubic Feet", "category": "length", "type": "standard", "teaser": "A freight crate is two cubic meters; how many cubic feet of cargo space is that?", "labels": {"in1": "Cubic Meters", "in2": "Cubic Feet"}, "factor": 35.3147},
|
||||
{"slug": "foot-candles-to-lux", "name": "Foot-candles to Lux", "category": "light", "type": "standard", "teaser": "Gallery staff want to match 150 foot-candles; what does that translate to in lux?", "labels": {"in1": "Foot-candles", "in2": "Lux"}, "factor": 10.7639},
|
||||
{"slug": "foot-pounds-energy-to-joules", "name": "Foot-pounds (energy) to Joules", "category": "weight", "type": "standard", "teaser": "The engine produces five foot-pounds of work; how many joules is that?", "labels": {"in1": "Foot-pounds (energy)", "in2": "Joules"}, "factor": 1.35581795},
|
||||
{"slug": "foot-pounds-to-inch-pounds", "name": "Foot-Pounds to Inch-Pounds", "category": "length", "type": "standard", "teaser": "A torque spec calls for two foot-pounds; how many inch-pounds is that?", "labels": {"in1": "Foot-Pounds", "in2": "Inch-Pounds"}, "factor": 12.0},
|
||||
{"slug": "fortnights-to-days", "name": "Fortnights to Days", "category": "time", "type": "standard", "teaser": "The rental period lasts three fortnights; how many days will be billed?", "labels": {"in1": "Fortnights", "in2": "Days"}, "factor": 14.0},
|
||||
{"slug": "furlongs-per-fortnight-to-meters-per-second", "name": "Furlongs per fortnight to m/s", "category": "speed", "type": "standard", "teaser": "Traveling at one furlong per fortnight, what speed in meters per second is that?", "labels": {"in1": "Furlongs per fortnight", "in2": "m/s"}, "factor": 1.336e-05},
|
||||
{"slug": "furlongs-to-meters", "name": "Furlongs to Meters", "category": "length", "type": "standard", "teaser": "A race distance of two furlongs equals how many meters?", "labels": {"in1": "Furlongs", "in2": "Meters"}, "factor": 201.168},
|
||||
{"slug": "furlongs-to-miles", "name": "Furlongs to Miles", "category": "length", "type": "standard", "teaser": "A course covers eight furlongs; how far is that in miles?", "labels": {"in1": "Furlongs", "in2": "Miles"}, "factor": 0.125},
|
||||
{"slug": "gallons-per-minute-to-cubic-feet-per-second", "name": "Gallons per minute to CFS", "category": "volume", "type": "standard", "teaser": "A pump pushes 200 gpm; what is that flow rate in cubic feet per second?", "labels": {"in1": "Gallons per minute", "in2": "CFS"}, "factor": 0.00222801},
|
||||
{"slug": "gallons-per-minute-to-liters-per-minute", "name": "Gallons per minute to Liters per minute", "category": "volume", "type": "standard", "teaser": "A faucet flows at three gpm; what is that in liters per minute?", "labels": {"in1": "Gallons per minute", "in2": "Liters per minute"}, "factor": 3.78541},
|
||||
{"slug": "gallons-to-barrel-us-oil", "name": "Gallons to Barrel (US oil)", "category": "volume", "type": "standard", "teaser": "A tanker carries 840 gallons; how many US oil barrels is that?", "labels": {"in1": "Gallons", "in2": "Barrel (US oil)"}, "factor": 0.0238095238},
|
||||
{"slug": "gallons-to-cubic-feet", "name": "Gallons to Cubic Feet", "category": "length", "type": "standard", "teaser": "A tank holds fifty gallons; how many cubic feet does that represent?", "labels": {"in1": "Gallons", "in2": "Cubic Feet"}, "factor": 0.133681, "hidden": true},
|
||||
{"slug": "gallons-to-cubic-meters", "name": "Gallons to Cubic Meters", "category": "length", "type": "standard", "teaser": "A reservoir stores 1,200 gallons; what is the cubic meter value?", "labels": {"in1": "Gallons", "in2": "Cubic Meters"}, "factor": 0.00378541},
|
||||
{"slug": "gallons-to-cups", "name": "Gallons to Cups", "category": "volume", "type": "standard", "teaser": "A recipe needs two gallons; how many cups should you measure?", "labels": {"in1": "Gallons", "in2": "Cups"}, "factor": 16.0},
|
||||
{"slug": "gallons-to-fluid-ounces", "name": "Gallons to Fluid Ounces", "category": "weight", "type": "standard", "teaser": "A pitcher pours three gallons; how many fluid ounces is that?", "labels": {"in1": "Gallons", "in2": "Fluid Ounces"}, "factor": 128.0},
|
||||
{"slug": "gallons-to-pints", "name": "Gallons to Pints", "category": "volume", "type": "standard", "teaser": "Pouring one gallon equals how many pints for serving?", "labels": {"in1": "Gallons", "in2": "Pints"}, "factor": 8.0},
|
||||
{"slug": "gallons-to-quarts", "name": "Gallons to Quarts", "category": "volume", "type": "standard", "teaser": "Four gallons convert to how many quarts for canning?", "labels": {"in1": "Gallons", "in2": "Quarts"}, "factor": 4.0},
|
||||
{"slug": "gamma-mass-to-micrograms", "name": "Gamma (mass) to Micrograms", "category": "weight", "type": "standard", "teaser": "A lab note shows gamma units; what is that in micrograms?", "labels": {"in1": "Gamma (mass)", "in2": "Micrograms"}},
|
||||
{"slug": "gauss-to-tesla", "name": "Gauss to Tesla", "category": "other", "type": "standard", "teaser": "A field reads five thousand gauss; what is that in tesla?", "labels": {"in1": "Gauss", "in2": "Tesla"}, "factor": 0.0001},
|
||||
{"slug": "gbps-to-mbps", "name": "Gbps to Mbps", "category": "other", "type": "standard", "teaser": "A fiber uplink reports 10 Gbps; how many megabits per second of capacity is that?", "labels": {"in1": "Gbps", "in2": "Mbps"}, "factor": 1000.0},
|
||||
{"slug": "gibibytes-to-gigabytes", "name": "Gibibytes to Gigabytes", "category": "data", "type": "standard", "teaser": "A backup file is 2 GiB; how many gigabytes will the storage quota show?", "labels": {"in1": "Gibibytes", "in2": "Gigabytes"}, "factor": 1.073741824},
|
||||
{"slug": "gigabits-to-megabits", "name": "Gigabits to Megabits", "category": "data", "type": "standard", "teaser": "A carrier promises 3 gigabits per second; how many megabits is the link rated for?", "labels": {"in1": "Gigabits", "in2": "Megabits"}, "factor": 1000.0},
|
||||
{"slug": "gigabytes-to-bytes", "name": "Gigabytes to Bytes", "category": "data", "type": "standard", "teaser": "A download weighs 5 gigabytes; how many bytes does that represent?", "labels": {"in1": "Gigabytes", "in2": "Bytes"}, "factor": 1000000000.0},
|
||||
{"slug": "gigabytes-to-gibibytes", "name": "Gigabytes to Gibibytes", "category": "data", "type": "standard", "teaser": "A storage plan advertises 1,000 GB; how many gibibytes is that?", "labels": {"in1": "Gigabytes", "in2": "Gibibytes"}, "factor": 0.9313225746154785, "hidden": true},
|
||||
{"slug": "gigabytes-to-petabytes", "name": "Gigabytes to Petabytes", "category": "data", "type": "standard", "teaser": "A data warehouse holds 400,000 gigabytes; how many petabytes is that?", "labels": {"in1": "Gigabytes", "in2": "Petabytes"}, "factor": 1e-06},
|
||||
{"slug": "gigahertz-to-megahertz", "name": "Gigahertz to Megahertz", "category": "other", "type": "standard", "teaser": "A processor is rated at 3 GHz; how many megahertz is that clock speed?", "labels": {"in1": "Gigahertz", "in2": "Megahertz"}, "factor": 1000.0},
|
||||
{"slug": "gill-to-milliliters", "name": "Gill to Milliliters", "category": "volume", "type": "standard", "teaser": "A bartender pours two US gills; how many milliliters should the glass hold?", "labels": {"in1": "Gill", "in2": "Milliliters"}, "factor": 118.294},
|
||||
{"slug": "gradians-to-degrees", "name": "Gradians to Degrees", "category": "angle", "type": "standard", "teaser": "A surveyor logs 100 gradians; what is that angle in degrees?", "labels": {"in1": "Gradians", "in2": "Degrees"}, "factor": 0.9},
|
||||
{"slug": "gradians-to-radians", "name": "Gradians to Radians", "category": "angle", "type": "standard", "teaser": "A control dial sweeps 200 gradians; what is that rotation in radians?", "labels": {"in1": "Gradians", "in2": "Radians"}, "factor": 0.01570796},
|
||||
{"slug": "grains-to-ounces", "name": "Grains to Ounces", "category": "weight", "type": "standard", "teaser": "A jewelry batch weighs 100 grains; how many ounces is that?", "labels": {"in1": "Grains", "in2": "Ounces"}, "factor": 0.002285714},
|
||||
{"slug": "grams-per-cubic-centimeter-to-kilograms-per-liter", "name": "Grams per cubic centimeter to Kilograms per liter", "category": "length", "type": "standard", "teaser": "A fluid density of 1 g/cm\u00b3 equals how many kg/L?", "labels": {"in1": "Grams per cubic centimeter", "in2": "Kilograms per liter"}},
|
||||
{"slug": "grams-per-milliliter-to-kilograms-per-cubic-meter", "name": "Grams per milliliter to Kilograms per cubic meter", "category": "length", "type": "standard", "teaser": "A solution at 1.2 g/mL corresponds to how many kg/m\u00b3?", "labels": {"in1": "Grams per milliliter", "in2": "Kilograms per cubic meter"}, "factor": 1000.0},
|
||||
{"slug": "grams-to-drams", "name": "Grams to Drams", "category": "weight", "type": "standard", "teaser": "A tea blend calls for 2 grams; how many drams should you measure?", "labels": {"in1": "Grams", "in2": "Drams"}, "factor": 0.564383},
|
||||
{"slug": "grams-to-kilograms", "name": "Grams to Kilograms", "category": "weight", "type": "standard", "teaser": "A parcel weighs 3,000 grams; how many kilograms is that weight?", "labels": {"in1": "Grams", "in2": "Kilograms"}, "factor": 0.001},
|
||||
{"slug": "grams-to-momme", "name": "Grams to Momme", "category": "weight", "type": "standard", "teaser": "A silk roll weighs 20 grams; how many momme does that equal?", "labels": {"in1": "Grams", "in2": "Momme"}, "factor": 0.2666667},
|
||||
{"slug": "grams-to-pounds", "name": "Grams to Pounds", "category": "weight", "type": "standard", "teaser": "A container measures 200 grams; how many pounds does the load represent?", "labels": {"in1": "Grams", "in2": "Pounds"}, "factor": 0.00220462},
|
||||
{"slug": "grams-to-scruples", "name": "Grams to Scruples", "category": "weight", "type": "standard", "teaser": "A pharmacy formula needs 10 grams; what is that in scruples?", "labels": {"in1": "Grams", "in2": "Scruples"}, "factor": 0.771605},
|
||||
{"slug": "grams-to-tolas", "name": "Grams to Tolas", "category": "weight", "type": "standard", "teaser": "A gold bar weighs 5 grams; how many tolas is that mass?", "labels": {"in1": "Grams", "in2": "Tolas"}, "factor": 0.085735},
|
||||
{"slug": "gray-to-sievert", "name": "Gray to Sievert", "category": "radiation", "type": "standard", "teaser": "A gamma exposure is 3 gray; how many sieverts is that for gamma/beta?", "labels": {"in1": "Gray", "in2": "Sievert"}},
|
||||
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user