Difference between revisions of "Template:ExpandTime"

From Kerbal Space Program Wiki
Jump to: navigation, search
m (is there a particular reason this was not already implemented? units should always accompany values)
m (-new line; +define what minute/hour/day mean;)
Line 1: Line 1:
<includeonly>{{#ifexpr: {{{1}}} >= 86400|{{formatnum|{{#expr: trunc({{{1}}} / 86400)}}}}&nbsp;{{lang|en=d|ru=дней}}|}} {{#ifexpr: {{{1}}} >= 3600|{{#expr: {{{1}}} / 3600 mod 24}}&nbsp;{{lang|en=h|pl=g|ru=часов}}|}} {{#ifexpr: {{{1}}} >= 60|{{#expr: {{{1}}} / 60 mod 60}}&nbsp;{{lang|en=m|ru=минут}}|}} {{#expr: {{{1}}} mod 60 + {{{1}}} - trunc({{{1}}}) round 1}}&nbsp;{{lang|en=s|ru=секунд}}</includeonly>
+
<includeonly>{{#ifexpr: {{{1}}} >= 86400|{{formatnum|{{#expr: trunc({{{1}}} / 86400)}}}}&nbsp;{{lang|en=d|ru=дней}}|}} {{#ifexpr: {{{1}}} >= 3600|{{#expr: {{{1}}} / 3600 mod 24}}&nbsp;{{lang|en=h|pl=g|ru=часов}}|}} {{#ifexpr: {{{1}}} >= 60|{{#expr: {{{1}}} / 60 mod 60}}&nbsp;{{lang|en=m|ru=минут}}|}} {{#expr: {{{1}}} mod 60 + {{{1}}} - trunc({{{1}}}) round 1}}&nbsp;{{lang|en=s|ru=секунд}}</includeonly><noinclude>{| class="wikitable"
<noinclude>{| class="wikitable"
 
 
! #
 
! #
 
! Description
 
! Description
Line 8: Line 7:
 
|}
 
|}
  
This template converts a time given in seconds into multiple different time units (days, hours, minutes and seconds).
+
This template converts a time given in seconds into multiple different time units (days, hours, minutes and seconds), where:
 +
* 1 minute = 60 seconds
 +
* 1 hour = 60 minutes = 3600 seconds
 +
* 1 day = 24 hours = 1440 minutes = 86400 seconds
  
 
== Example ==
 
== Example ==

Revision as of 11:19, 13 September 2013

# Description
1 Time in seconds

This template converts a time given in seconds into multiple different time units (days, hours, minutes and seconds), where:

  • 1 minute = 60 seconds
  • 1 hour = 60 minutes = 3600 seconds
  • 1 day = 24 hours = 1440 minutes = 86400 seconds

Example

{{ExpandTime|9203544.6}}

426 d 0 h 32 m 24.6 s