User:Johan G/convert: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(adding ft -> m and ft -> NM conversion formulas)
m (Clarifying that only some conversions are implemented; Had some debugging value left in template)
Line 4: Line 4:
     -->{{#switch: {{{2|}}}
     -->{{#switch: {{{2|}}}
     | mm = {{#switch: {{{3|}}}
     | mm = {{#switch: {{{3|}}}
       | in = {{#expr: {{{value|309}}} div 25.4 round {{{4|0}}}}} {{#if: {{{5|}}}||in}}
       | in = {{#expr: {{{1}}} div 25.4 round {{{4|0}}}}} {{#if: {{{5|}}}||in}}
       | ft = {{#expr: {{{1}}} div 304.8 round {{{4|0}}}}} {{#if: {{{5|}}}||ft}}
       | ft = {{#expr: {{{1}}} div 304.8 round {{{4|0}}}}} {{#if: {{{5|}}}||ft}}
       | m = {{#expr: {{{1}}} div 1000 round {{{4|0}}}}} {{#if: {{{5|}}}||m}}
       | m = {{#expr: {{{1}}} div 1000 round {{{4|0}}}}} {{#if: {{{5|}}}||m}}
Line 160: Line 160:


== Supported units ==
== Supported units ==
Conversion between ''some'' of these units have been implemented.
Conversion between '''some''' of these units have been implemented.


=== Units of length ===
=== Units of length ===

Revision as of 17:28, 5 August 2018

Parameter value missing

The following template description is not displayed when the template is inserted in an article.

Goal

This template can be used to...

Adding this template to a page will automatically add Category:... to that page.

Caution Caution that might help prevent lost work, very complicated debugging etc...

Note Note that might be helpful or lead the reader in the right direction.

Usage

{{convert|value|from-unit|to-unit|decimals|hide-unit}}

The parameters value, from-unit and to-unit are mandatory, and the other optional

value
Value to be converted from one unit to another.
from-unit
Unit to be converted from
to-unit
Unit to be converted to
decimals
Number of decimals. If empty, no decimals will be shown
hide-unit
If not empty the unit will not be shown in the result

Examples

Examples using different options.

Supported units

Conversion between some of these units have been implemented.

Units of length

mm millimeter
in inches
ft feet
m meters
km kilometers
mi statute miles
NM nautical miles

Units of velocity

ft/s feet per second
m/s meters per second
km/h kilometers per hour
mph statute miles per hour
kt knots

Units of time

s seconds
min minutes
h hours
d days

Known issues

Known issues and workarounds if such are known.

Related templates