Difference between revisions of "Template:Infobox dim/doc"

From blackwiki
Jump to navigation Jump to search
imported>Hike395
(update doc)
imported>Zackmann08
(lua)
 
Line 1: Line 1:
 
{{Documentation subpage}}
 
{{Documentation subpage}}
 +
{{Lua|Module:Check for unknown parameters}}
 
<!-- Categories and interwikis go at the bottom of this page. -->
 
<!-- Categories and interwikis go at the bottom of this page. -->
  

Latest revision as of 21:30, 18 March 2019

Usage

{{Infobox dim}} is used inside infoboxes to determine the size of an object. This is passed to geohack to make appropriate map sizes. Parameters are all optional:

  • length_mi
  • length_km
  • width_mi
  • width_km
  • area_mi2
  • area_km2
  • area_acre
  • area_ha

Source

{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{{length_mi}}}*1.609}}|{{{length_km|}}} }}
                  |{{#if:{{{width_mi|}}}|{{#expr:{{{width_mi}}}*1.609}}|{{{width_km|}}} }}
                  |{{#switch: 1
	             | {{#if:{{{area_mi2|}}}|1|0}} = {{#expr:{{{area_mi2}}}*2.59}}
		     | {{#if:{{{area_acre|}}}|1|0}} = {{#expr:{{{area_acre}}}*0.004047}}
		     | {{#if:{{{area_ha|}}}|1|0}} = {{#expr:{{{area_ha}}}*0.01}}
		     | {{#if:{{{area_km2|}}}|1|0}} = {{{area_km2}}} }} }}

See also