blob: bc2df4e90f03fbd1a644372a56444c5c38fc27ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env ruby
# Run as
# mount-ave-speeds <time-in-secs>
# 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"
|