From 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Tue, 31 Oct 2023 17:54:07 +0000 Subject: Commit all to date. --- web/mount-ave-speeds | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 web/mount-ave-speeds (limited to 'web/mount-ave-speeds') diff --git a/web/mount-ave-speeds b/web/mount-ave-speeds new file mode 100755 index 0000000..bc2df4e --- /dev/null +++ b/web/mount-ave-speeds @@ -0,0 +1,19 @@ +#!/usr/bin/env ruby + +# Run as +# mount-ave-speeds +# And get back the kph and mph. + +time = ARGV[0].to_i +km2m_constant = 0.6213712 +time_h = time / (60.0 * 60.0) +km = 0.47 + +kph = (km / time_h) +mph = kph * km2m_constant + +print "Time taken: ", time, "\n" +print "KPH: ", kph.round(2), "\n" +print "MPH: ", mph.round(2), "\n" + + -- cgit v1.2.1