#!/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 << "\n" table << "\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\t\n" table << "\t\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\n" line.split("\t").each do |entry| table << ("\t\t\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\n") table << ("\t\t\n") table << "\t\n" end table << "
DateSetTime Taken (s)Heart Rate (bpm)StopsBegin TimeEnd TimeKphMph
" + entry.delete("\n") + "" + kph_v.round(2).to_s + "" + mph_v.round(2).to_s + "
\n" # Echo the file. puts table