#!/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 "\n" exit end table="" # Sort out the header. table << "
Date | \n" table << "\t\tSet | \n" table << "\t\tTime Taken (s) | \n" table << "\t\tHeart Rate (bpm) | \n" table << "\t\tStops | \n" table << "\t\tBegin Time | \n" table << "\t\tEnd Time | \n" table << "\t\tKph | \n" table << "\t\tMph | \n" table << "\t
---|---|---|---|---|---|---|---|---|
" + entry.delete("\n") + " | \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\n" splits_len += 1 end table << ("\t\t | " + kph_v.round(2).to_s + " | \n") table << ("\t\t" + mph_v.round(2).to_s + " | \n") table << "\t