summaryrefslogtreecommitdiff
path: root/web/ma-fmt-tbl
blob: 639ecf109a3758d12feeea7b0c5dd53af8692ea5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env ruby
# Takes a file as first argument, and formats that table which should
# be in tab delimited form with optional comment lines beginning with # 
# into a table for HTML.
# The second argument is a known quantity - because we also need to calculate
# the final fields of each entry.

def kph(time)
  time = time.to_i
  time_h = time / (60.0 * 60.0)
  distance = 0.47
  return distance / time_h
end

def mph(time)
  return kph(time) * 0.6213712
end

if ARGV[0] == nil then 
  puts "<!-- No argument passed! ma-fmt-tbl Exitting early. -->\n"
  exit
end


table=""

# Sort out the header.
table << "<table>\n"
table << "\t<tr class=\"header\">\n"
table << "\t\t<th>Date</th>\n"
table << "\t\t<th>Set</th>\n"
table << "\t\t<th>Time Taken (s)</th>\n"
table << "\t\t<th>Heart Rate (bpm)</th>\n"
table << "\t\t<th>Stops</th>\n"
table << "\t\t<th>Begin Time</th>\n"
table << "\t\t<th>End Time</th>\n"
table << "\t\t<th>Kph</th>\n"
table << "\t\t<th>Mph</th>\n"
table << "\t</tr>\n"


# Now sort out the actual file.

File.foreach(ARGV[0]).with_index do |line, line_num| 
  next if line[0] == '#'
  next if line == "\n" or line == "\t" or line == "" or line == " "
  table << "\t<tr>\n"
  line.split("\t").each do |entry|
    table << ("\t\t<td>" + entry.delete("\n") + "</td>\n")
  end

  splits = line.split("\t")
  splits_len = splits.length
  time = splits[2]
  kph_v = kph(time)
  mph_v = mph(time)
  while splits_len < 7
    # In case any entries are missing, pad to that amount.
    table << "\t\t<td></td>\n"
    splits_len += 1
  end

  table << ("\t\t<td>" + kph_v.round(2).to_s + "</td>\n")
  table << ("\t\t<td>" + mph_v.round(2).to_s + "</td>\n")

  table << "\t</tr>\n"
end

table << "</table>\n"

# Echo the file. 
puts table