File:Cyclingdevelopmenthourrecord.svg
Summary
| Description |
English: Development of the world records of cycling until July 2007. Generated by me with gnuplot, from data of the Hour record article on wikipedia. I release it to the public domain and give up all rights. |
| Date | |
| Source | Own work |
| Author | Pie.er |
| SVG development | Category:Valid SVG created with Gnuplot#Cyclingdevelopmenthourrecord.svg |
Licensing
| This work has been released into the public domain by its author, Pie.er. This applies worldwide. In some countries this may not be legally possible; if so: Pie.er grants anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. |
Source:
unset key
unset log
set title "Development of Cycling hour record"
set xlabel "Time"
set ylabel "Hour record (meters)"
set xdata time
set timefmt "%d-%m-%Y"
set xrange ["01-01-1876":"01-01-2020"]
set key "01-01-1960",70000
set format x "%Y"
set terminal svg size 2000 1500 fsize 36 enhanced
set output "c:/gnuplot/hourrecord.svg"
plot 'c:/gnuplot/hourrecord3.dat' using 1:2 title 'IHPVA hour record' with linespoints pointtype 1,\
'c:/gnuplot/hourrecord2.dat' using 1:2 title 'UCI best human effort' with linespoints pointtype 2,\
'c:/gnuplot/hourrecord.dat' using 1:2 title 'UCI hour record' with linespoints pointtype 3
the files hourrecord3.dat, hourrecord2.dat and hourrecord.dat are directly compiled from Hour record information, and are available through a request at my talk page.
Category:Hour record (cycling)