Template

Convert/doc

From Halal Explorer

< Template:Convert
Revision as of 13:06, 30 July 2017 by imported>WOSlinker (fix small tags)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template {{convert}} calculates measurements from one unit (you can enter) to another one, and then presents the results. For example:

{{convert|2|km|mi}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|7|mi|km}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Multiple formatting and calculation options are listed below.

Contents

Unit name or symbol (abbreviation): 1 pound or 1 lb?

By default, the first value shows unit name, the second the symbols (= abbreviation). Use |abbr=on/off to change this behaviour:

{{convert|1|lb|kg}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted (To compare; default: first value shows unit name)
{{convert|1|lb|kg|abbr=on}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|1|lb|kg|abbr=off}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • |abbr=in toggles the default behaviour (|abbr=out):
{{convert|1|lb|kg|abbr=in}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Adjective: a 10-mile distance

Use |adj=on to produce the adjective form. The difference:

{{convert|10|mi|km}} to goLua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted to go. (To compare, default)
A {{convert|10|mi|km|adj=on}} distance → A Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted distance. (Adjective form)

Rounding: 100 ft is 30 m or 30.5 m or 30.48 m?

In detail, it is Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted. In practical use, it is common to round the calculated metric number. With that, there are several possibilities.

Default rounding

By default, the conversion result will be rounded either to precision comparable to that of the input value (the number of digits after the decimal point—or the negative of the number of non-significant zeroes before the point—is increased by one if the conversion is a multiplication by a number between 0.02 and 0.2, remains the same if the factor is between 0.2 and 2, is decreased by 1 if it is between 2 and 20, and so on) or to two significant figures, whichever is more precise. An exception to this is rounding temperatures (see below).
Examples of rounding
Input Displays as Note
{{convert|123|ft|m|-1}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|123|ft|m|0}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|123|ft|m|1}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|550|ft|m|0}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Approximate value is 167.64 m
{{convert|550|ft|m}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Rounds to 170, when approximate value is 167.64 m
{{convert|500|ft|m|0}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Approximate value is 152.4 m
{{convert|500|ft|m}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Rounds to 150, when approximate value is 152.4 m

Convert supports four types of rounding:

Round to a given precision: use |precision=

Specify the desired precision with the fourth unnamed parameter (or third unnamed parameter if the "convert to" parameter is omitted; or fifth unnamed parameter if a range is specified; or fourth unnamed parameter again if a range is specified and the "convert to" parameter is omitted; needs to be replaced with a "precision" named parameter). The conversion is rounded off to the nearest power of 1/10 this number. For instance, if the result is 8621 and the round number is "-2", the result will be 8600. If the result is "234.0283043" and the round number is "0", the result will be 234.

Round to a given number of significant figures: use |sigfig=

To specify the output number to be with n significant figures use |sigfig=<number>:

  • To compare: {{convert|1200|ft|m}} → Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1200|ft|m|sigfig=4}} → Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1200|ft|m|sigfig=3}} → Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1200|ft|m|sigfig=2}} → Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1200|ft|m|sigfig=1}} → Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Setting |sigfig= is meaningless

  • {{convert|1200|ft|m|sigfig=0}} → Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Round to a multiple of 5: 15, 20, 25, ...

Using |round=5 rounds the outcome to a multiple of 5.

{{convert|10|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|10|m|ft|round=5}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Similar: using |round=25 rounds the outcome to a multiple of 25.

{{convert|10|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|10|m|ft|round=25}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
To compare: {{convert|10|m|ft|sigfig=4}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

In a range, one can round each value individually to the default. Use |round=each:

{{convert|10 x 200 x 3000|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|10 x 200 x 3000|m|ft|round=each}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Round to a multiple of a given fraction: 2 3/16 inch

Specify the desired denominator using |frac=<some positive integer>. (Denominator is the below-the-slash number, for example the 3 in 1/3).

{{convert|5.56|cm|in|frac=16}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|8|cm|in|frac=4}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

The fraction is reduced when possible:

{{convert|8|cm|in|frac=100}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|8|cm|in}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted (To compare)

xRounding the temperatures °C, °F and K

In temperatures, the conversion will be rounded either to precision comparable to that of the input value or to that which would give three significant figures when expressed in kelvins, whichever is more precise.

{{convert|10|C|F K}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Note

For a temperature difference, like to convert "A rise of 20 °C", use |C-change=20 &tc.
{{convert|20|C-change|F-change K-change}} → A rise of Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
To compare: "A temperature of 20 °C" would yield: A temperature of Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Into multiple units: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Separate the multiple output units by a space:

{{convert|10|C|F K}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|5|km|mi nmi}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Ranges of values

A range: 6 to 17 kg (13 to 37 lb)

Range indicators are entered as the second parameter (between the values). Range separators can be:

Range separators in {{convert}}
Separator Convert Result Notes
- {{convert|3|-|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted input can be hyphen (-) or en dash (–), output uses en dashes
 &ndash;(en dash) {{convert|3|–|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
and {{convert|3|and|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
& {{convert|3|&|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Same as and
and(-) {{convert|3|and(-)|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted |abbr=on alters the punctuation
and(-)|abbr=on {{convert|3|and(-)|6|ft|abbr=on}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
or {{convert|3|or|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
to {{convert|3|to|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
to(-) {{convert|3|to(-)|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted |abbr=on alters the punctuation
to(-)|abbr=on {{convert|3|to(-)|6|ft|abbr=on}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
to about {{convert|3|to about|6|ft}} <templatestyles src="nowrap/core.css"/>Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
+/- {{convert|3|+/-|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
± &plusmn; {{convert|3|±|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
+ {{convert|3|+|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
, {{convert|3|,|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
, and {{convert|3|, and|6|ft}} <templatestyles src="nowrap/core.css"/>Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
, or {{convert|3|, or|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
by {{convert|3|by|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
x {{convert|3|x|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Scientific notation.
|abbr=on alters the punctuation
× &times; {{convert|3|×|6|ft}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
x|abbr=on {{convert|3|x|6|ft|abbr=on}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Multiple dimensions: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Use "by"
{{convert|6|by|12|ft|m}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
Use "×" or ""x""
{{convert|6|x|12|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

In science, the formal way is to set |x| and |abbr=on (keeping dimensions right, like in area = x km2):

{{convert|6|x|12|m|ft|abbr=on}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

About feet, inch in ranges and multiples

While it is possible to enter feet, inch in a simple conversion, this is not possible for ranges:

  • {{convert|1|ft|3|in|mm}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted (to compare)
  • {{convert|1|ft|3|in|x|3|ft|5|in|mm}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Words

Spelling of unit name: UK metre or US meter?

Default spelling of units is en-UK. To show en-US spelling, use |sp=us:

{{convert|1|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted -- default
{{convert|1|m|ft|sp=us}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Spell out numbers: ten miles

To write a number in words, use |spell=in:

{{convert|10|mi|m|spell=in}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

To make first letter a capital, use |spell=In

{{convert|10|mi|m|spell=In}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Extra words: 4 planted acres

Incomplete section
{{convert|4|acre||adj=pre|planted}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Extra adjective words: A Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted corridor

{{convert|4|ft|m|adj=mid|-long}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Grammatical construction: The 18-, 24- and 32-pounder (8, 11 and 15 kg) cannons

"The American defenders had 18-, 24- and 32-pounder (8, 11 and 15 kg) cannons."

This formatted result is not possible straightforward by using {{convert}}. However, it can be made in three steps.

Step 1: Enter the input numbers and units in {{convert}} just to get the calculated output:
  • had {{convert|18 |, |24 |, |32 |lb |kg |0 }} cannons
→ had Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted cannons
The core conversion should look good now. You can save this (or preview).
Step 2: We need the resulting text in plain code in the page, not as a {{convert}} template.
For this, add subst: to the template name (for 'substitute') :
  • had {{subst:convert|18 |, |24 |, |32 |lb |kg |0 }} cannons
As a check: the preview result should show the conversion correct, with the numbers still right.
Now save this.
→ had 18, 24, 32 pounds (8, 11, 15 kg) cannons
Step 3: When opening the edit screen again, you'll see that the text is there in code. The template {{convert}} itself has disappeared. You can change the text as needed. The edit screen text is:
had 18,&nbsp;24,&nbsp;32 pounds (8,&nbsp;11,&nbsp;15&nbsp;kg) cannons
You can edit this text to add the grammar:
  • had 18-,_24-_and_32-pounder (8,&nbsp;11_and_15&nbsp;kg) cannons
After saving your edit, it shows:
→ "had 18-, 24- and 32-pounder (8, 11 and 15 kg) cannons".

Numbers

Using an SI prefix: gigameter (Gm), or micrometer (μm)

Units can have an SI prefix like G before the unit: Gm, and giga before the name: gigameter. These are plain multiplication factors.

To illustrate, these are trivial calculations (from meter to meter), showing the multiplication factor:

  • Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

The prefix can be added before the SI unit (here: unit m for meter):

  • {{convert|12|Gm|mi|abbr=on}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • Mm: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • km: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • mm: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • μm: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • um: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted (letter "u" can be used for "μ" here)

The prefix can be used in the output unit:

  • {{convert|12000|mi||Mm|abbr=on}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|12|in|μm|abbr=on}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

As an exception, the non-SI unit "inch" can have the "μ" prefix too)

  • {{convert|12|μm|μin|abbr=on}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Thousands separator: 1,000 mi and 1000 mi

In input, a comma for thousands separator is accepted. A gap (space) is not. In output, by default, the thousand separator is the comma:

  • {{convert|1,234,567|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1,234,567|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1 234 567|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Set |comma=off to remove the separator:

  • {{convert|1234567|m|ft|comma=off}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Use |comma=gaps to set digit grouping by gap (<space>) in larger numbers (thousands separator):

  • {{convert|1234567|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted (To compare, default)
  • {{convert|1234567|m|ft|comma=gaps}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Setting |comma=5 or |comma=gaps5 will only add the separator when the number of digits is 5 or more:

  • {{convert|1234|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted (To compare, default)
  • {{convert|1234|m|ft|comma=5}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1234567|m|ft|comma=5}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1234|m|ft|comma=gaps5}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
  • {{convert|1234567|m|ft|comma=gaps5}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Output manipulation

Brackets and separators: 10 m [33 ft]

Punctuation that distinguishes the two measurements is set by |disp=.
Options are: b (the default), sqbr, comma, or, br, x|...:

{{convert|10|m|ft}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted -- ( ) brackets are the default
{{convert|10|m|ft|disp=sqbr}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|10|m|ft|disp=comma}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|10|m|ft|disp=or}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Setting |disp=br will force a new line (<br>)

{{convert|10|m|ft|disp=br}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Setting |disp=x|... allows any text as separator:

{{convert|10|m|ft|disp=x|_MyText_}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted -- (To display spaces, use &nbsp;)

Flipping (reordering) the two measurements: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Setting |order=flip will flip (swap) the two measurements:

{{convert|1|mi|m}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted (To compare, default)
{{convert|1|mi|m|order=flip}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

When converting to multiple units, the effect is:

{{convert|10|km|mi nmi|order=flip}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
{{convert|10|km|nmi mi|order=flip}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Displaying parts of the result: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

It is possible to display only parts of the conversion result:

Convert Output Description
{{convert|2|cuyd|m3}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Default, to compare
{{convert|2|cuyd|m3|abbr=values}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Input and output numbers
{{convert|2|cuyd|m3|disp=unit}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Input unit
{{convert|2|cuyd|m3|disp=unit|adj=on}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Input unit, adjective (hyphenated)
{{convert|2|cuyd|cuyd|0|disp=out|abbr=off}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Input (workaround)
{{convert|2|cuyd|m3|disp=unit2}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Output unit (symbol)
{{convert|2|cuyd|m3|disp=unit2|abbr=off}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Output unit (name)
{{convert|2|cuyd|m3|disp=number}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Output value
{{convert|2|cuyd|m3|disp=out}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Output value and unit
{{convert|2|cuyd|m3|disp=out|abbr=off}} Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted Output value and unit

Table options

For the wikitable structure, there are two options: split over columns and make the table sortable.

Show numbers only in columns in a table

Using {convert} in a table cell, with |disp=table splits the result over two columns:

{{convert|10|m|ft|disp=table}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

|disp=tablecen does the same, and also centers the text:

{{convert|20|m|ft|disp=tablecen}}Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

The units are added as a column header:

  m ft
|disp=table Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
|disp=tablecen Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
|disp=<other> (default) Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Sorting

Use both |disp=table |sortable=on to produce table columns (pipe symbols), with sortable table column. As of January 2013, only the first (lefthand) column will sort (improvements pending).
{{convert|10|m|ft|disp=table|sortable=on}} →

<templatestyles src="nowrap/core.css"/>Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

This shows the hidden numerical sortkey:

align="right"|<span style="display:none">7001100000000000000</span>10 |align="right"|33

m ft
Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted
Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

Parameter list

Parameter options for {{convert}}
Option Description Note
|abbr=in Use symbol for first (left-hand side) unit Symbol ('abbreviation')
|abbr=off Use name for all units Symbol ('abbreviation')
|abbr=none
|abbr=on Use symbol for all units Symbol ('abbreviation')
|abbr=out Use symbol for right-hand side unit (default) Symbol ('abbreviation')
|abbr=values Show only input and output numbers, not units Parts only
|adj=1 Unit name is singular when number is 1 or less, but not zero Grammar, plural
|adj=j Join number and unit name using "&nbsp;" instead of a space Join values
|adj=mid|x=... User-specified text after the input unit; sets adj=on (adjective) Word adding, adjective
|adj=on Unit name is adjective (singular and hyphenated) Grammar, adjective
|adj=pre|x=... User-specified text before input unit Word adding
|adj=ri0 Round input with precision 0 Rounding and sigfig
|adj=ri1 Round input with precision 1 Rounding and sigfig
|adj=ri2 Round input with precision 2 Rounding and sigfig
|adj=ri3 Round input with precision 3 Rounding and sigfig
|disp=b Join input and output using " (...)" (default) Join values
|disp=sqbr Join input and output using " [...]" Join values
|disp=br Join input and output using "<br/>" Join values
|disp=comma Join input and output using ", " Join values
|disp=or Join input and output using " or " Join values
|disp=number Display output number only Parts only
|disp=output number only
|disp=out Display only output number and name/symbol Parts only
|disp=output only
|disp=preunit|x=... User-specified text before input and output units Word adding
|disp=table Output is suitable for a table cell with align="right" Table columns
|disp=tablecen Output is suitable for a table cell with align="center" Table columns
|disp=unit Display input name/symbol only ( not input number, not output) Parts only
|disp=unit2 Display output name/symbol only (not input; not output number) Parts only
|disp=x|... Join input and output using user-specified text Word adding
|comma=5 Only use comma for thousands separator if 5 or more digits Number format
|comma=gaps Use gaps (space), not comma, for thousands separator Number format
|comma=gaps5 Use gaps (space), but only if 5 or more digits Number format
|comma=off No thousands separator Number format
|frac=N Show imperial number in fractions, denominator=N Number format, fraction
|lk=in Link left-hand side unit name or symbol Unit link
|lk=on Link all unit names or symbols (but not twice for the same unit) Unit link
|lk=out Link right-hand side unit name or symbol Unit link
|order=flip Inverts order of input, output measurements (conversion first) Order
|round=5 Rounds calculation to the nearest multiple of 5 Rounding and sigfig
|round=25 Rounds calculation to the nearest multiple of 25 Rounding and sigfig
|round=each In a range, each number is rounded by the default rounding Rounding and sigfig
|sigfig=N Round output number to N significant figures (N is a positive integer) Rounding and sigfig
|sortable=in Output numeric hidden sort field for use in a sortable table (based on input) Table sort
|sortable=on
|sortable=out Output numeric hidden sort field for use in a sortable table (based on output) Table sort
|sp=us Use U.S. spelling (like "meter" instead of default "metre") Spelling U.S. names
|spell=in Spell input number in words Spelling numbers
|spell=In Spell input number in words with first letter uppercase Spelling numbers
|spell=on Spell input and output numbers in words Spelling numbers
|spell=On Spell input and output numbers in words with first letter uppercase Spelling numbers
|$= Replace $-sign with a currency sign, for example in $/acre <templatestyles src="nowrap/core.css"/>(no currency conversion happens) Cost per unit
|debug=yes Debugging only. In a sortable table: show the normally hidden sort key Table sort