diff options
author | George Abbott <george@gabbott.dev> | 2023-10-31 17:54:07 +0000 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2023-10-31 17:54:07 +0000 |
commit | 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch) | |
tree | c2a6751823e064e003cd4f6166df07bfc106d7eb /web/ma-fmt-tbl |
Commit all to date.
Diffstat (limited to 'web/ma-fmt-tbl')
-rwxr-xr-x | web/ma-fmt-tbl | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/web/ma-fmt-tbl b/web/ma-fmt-tbl new file mode 100755 index 0000000..639ecf1 --- /dev/null +++ b/web/ma-fmt-tbl @@ -0,0 +1,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 + |