Changes

Timed Race Chart

2,450 bytes added, 17:00, 2 September 2012
Created page with "This form will generate a pace chart for timed races, such as 24 hour races. This chart is a table with the a row for the number of laps completed, and a column for each pace...."
This form will generate a pace chart for timed races, such as 24 hour races. This chart is a table with the a row for the number of laps completed, and a column for each pace. Simply look down to find out how many laps you've completed, and then go across until you find the time that has elapsed. You will then see what your projected pace is for the race.
<html>

<form style="font-family: Helvetica,Arial,sans-serif;" method="get" action="/mediawiki/Scripting/TimedRaceChart.php" name="TimedRaceChart">
<table style="text-align: left;" border="1"
cellpadding="1" cellspacing="1">
<tbody>
<tr>
<td>Fastest Pace</td>
<td><input maxlength="5" size="5" name="fastpace" value="12:00"></td><td>This is the fastest pace for the chart in the form MM:SS. This min/Km if metric and min/mile if not.</td>
</tr>
<tr>
<td>Slowest Pace</td>
<td><input maxlength="5" size="5" name="slowpace" value="20:00"></td><td>This is the slowest pace, and works like the fastest pace field above.</td>
</tr>
<tr>
<td>Pace Increment</td>
<td><input maxlength="5" size="5" name="paceincrement" value="60"></td><td>The pace increment in seconds. So if you put 10:00 as the fastest, and 30 second increments you'll get columns for 10:00, 10:30, 11:00, etc.</td>
</tr>
<tr>
<td>Lap Length</td>
<td><input maxlength="8" size="8" name="laplength" value="1.52"></td><td>The length of each lap, in miles or Km as selected.</td>
</tr>
<tr>
<td>Lap Increment</td>
<td><input maxlength="8" size="8" name="lapincrement" value="5"></td><td>You can output one row per lap, but you may have a very long chart. This setting will reduce the number of rows, so a value of 5 will show laps 5, 10, 15, etc.</td>
</tr>
<tr>
<td>Duration (hours)</td>
<td><input maxlength="2" size="2" name="duration" value="24"></td><td>The length of the race in hours</td>
</tr>
<tr>
<td>Units</td>
<td><input type="checkbox" name="metric" value="1" />Metric</td><td>Miles or Km?</td>
</tr>
<tr>
<td>Start time (24 hour format)</td>
<td><input maxlength="5" size="5" name="starttime" value="06:00"></td><td>The start time of the race in 24 hour format, so 6am is 6:00.</td>
</tr>
</tbody>
</table>
<input type="submit" name="mysubmit" value="Generate" />
</form>
</html>