forked from GoldenCheetah/goldencheetah.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2089 lines (1906 loc) · 157 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>GoldenCheetah</title>
<link rel="icon" type="image/png" sizes="192x192" href="img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<!-- Bootstrap -->
<link href="css/bootstrap-3.3.5.min.css" rel="stylesheet">
<!-- Lightbox -->
<link href="css/lightbox.css" rel="stylesheet">
<link href="css/ekko-lightbox.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/goldencheetah.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<section id="header"></section>
<div class="navbar navbar-fixed-top screenshots" role="navigation" data-0="line-height:100px; height:100px; background-color:rgba(161,87,52,1);" data-300="line-height:60px; height:60px; background-color:rgba(0,0,0,1);">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="fa fa-bars color-white"></span>
</button>
<h1><a class="navbar-brand" href="#top" data-0="line-height:90px;" data-300="line-height:50px;" title="GoldenCheetah"> GoldenCheetah</a></h1>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav" data-0="margin-top:20px;" data-300="margin-top:5px;">
<!--<li class="active"><a href="#section-home">Home</a></li>-->
<li><a href="#section-download">Download</a></li>
<li><a href="#section-features">Features</a></li>
<li><a href="#section-tutorials">Tutorials</a></li>
<li><a href="#section-contributor">Contributors</a></li>
<li><a href="#section-science">Science</a></li>
<li><a href="#section-more">More</a></li>
</ul>
</div><!--/.navbar-collapse -->
</div>
</div>
<!-- Home section -->
<section id="section-home" class="appear clearfix">
<div class="jumbotron">
<div class="container">
<h1>GoldenCheetah</h1>
<div class="col-md-5">
<img src="img/logo.png" width="300" height="300" />
</div>
<br>
<ul>
<li>Downloads or Imports ride data directly from many <a href="#" data-toggle="tooltip" title="<b>Garmin</b> (500, 510, 800, 810,...)<br><b>SRM</b> (PowerControl V, VI and VII)<br><b>PowerTap</b> (Cervo & Joule (1.0, 2.0, GPS)<br><b>O_Synce</b> (Macro, Navi2coach)">devices</a></li><!-- (Garmin, SRM PowerControl, PowerTap Cervo & Joule, O Synce Navi2coach,...)-->
<li>Imports ride data downloaded with other <a href="#" data-toggle="tooltip" title="<b>TrainingPeaks WKO+</b><br>manufacturers' software (SRM, Powertap, IBike, Ergomo, Polar)<br>">programs</a></li><!-- including TrainingPeaks WKO+ and the manufacturers' software for the Ergomo, Garmin, Polar, PowerTap, and SRM devices.-->
<li>Provides a rich set of analysis <a href="#" data-toggle="tooltip" title="Critical Power graph<br>BikeScore calculation<br>Pedal force versus pedal velocity<BR>...">tools</a></li><!-- including a critical power graph, BikeScore calculation, histogram analysis, a best interval finder, and a pedal force versus pedal velocity chart, to name just a few.-->
<li>Is available for Linux, MacOS, and Windows.</li>
<li>Is released under an Open Source license.</li>
</ul>
<br/>
<h4 class="text-warning">We believe that cyclists and triathletes should be able to download their power data to the computer of their choice, analyze it in whatever way they see fit, and share their methods of analysis with others.</h4>
<br/>
<p><a id="btn-download" href="#section-download" class="btn btn-primary btn-lg" role="button">Download</a></p>
</div>
</div>
</section>
<!-- spacer section:testimonial -->
<section id="parallax1" class="section" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="align-center">
<div class="testimonial clearfix" >
<br/>
<h3>
To all those volunteers who selflessly give their time and without whom amateur sport would not exist.
</h3>
<br/>
<span class="author">— Graeme Obree, <i>in the dedication of Flying Scotsman</i></span>
<br/>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-download" class="section appear clearfix">
<div class="container">
<h1>Download</h1>
<div class="col-md-12" >
<h3>Version 3.5 (Current Stable Release)</h3>
<div class="col-md-3" >
<img src="img/logo.png" width="180" height="180" />
</div>
<div class="col-md-9" >
<br>
<b>WITHINGS USERS SHOULD INSTALL V3.6 DEVELOPMENT BUILDS THAT CONTAIN UPDATES FOR WITHINGS DOWNLOAD</b>
<br><br>
<p>We are proud to announce the release of version 3.5 of GoldenCheetah.<br>
Installation is simple. Download the file for your operating system.
<BR>
You can also <a href="RELEASE/release-notes.html">view the release notes</a> for 3.5
</p>
<div id="recommended-download-mac" class="col-md-6 alert simplebox hidden">
<h4>Recommended for you</h4>
We detected your OS is <b><span id="OS">MacOS</span></b> :
<span><a href="https://github.com/GoldenCheetah/GoldenCheetah/releases/download/V3.5/GoldenCheetah_v3.5_64bit_MacOS.dmg" data-toggle="tooltip" title="On Mac, open the DMG and drag and drop where you would like to install.">64bit</a></span>
</div>
</div>
<div class="col-md-9 alert simplebox">
<div class="col-md-12">
<h4>All Downloads</h4>
<div class="col-md-6">
Microsoft Windows
<span class="pull-right"><a href="https://github.com/GoldenCheetah/GoldenCheetah/releases/download/V3.5/GoldenCheetah_v3.5_32bit_Windows.exe" data-toggle="tooltip" title="For Windows, run the Installer and follow the prompts.">32-bit</a> </span><br>
Microsoft Windows
<span class="pull-right"><a href="https://github.com/GoldenCheetah/GoldenCheetah/releases/download/V3.5/GoldenCheetah_v3.5_64bit_Windows.exe" data-toggle="tooltip" title="For Windows, run the Installer and follow the prompts.">64-bit</a> </span><br>
<small>Windows builds do NOT support Windows XP any more.</small>
</div>
<div class="col-md-6">
Mac OS X (10.7+)
<span class="pull-right"><a href="https://github.com/GoldenCheetah/GoldenCheetah/releases/download/V3.5/GoldenCheetah_v3.5_64bit_MacOS.dmg" data-toggle="tooltip" title="On Mac, open the DMG and drag and drop where you would like to install.">64bit</a></span><br>
Linux (AppImage)
<span class="pull-right"><a href="https://github.com/GoldenCheetah/GoldenCheetah/releases/download/V3.5/GoldenCheetah_v3.5_amd64_Linux.AppImage" data-toggle="tooltip" title="On Linux, make it executable ($ chmod a+x GoldenCheetah*.AppImage), and run! ($ ./GoldenCheetah*.AppImage). ">AMD64</a></span><br>
Source Code (zip)
<span class="pull-right"><a href="https://github.com/GoldenCheetah/GoldenCheetah/archive/V3.5.zip" data-toggle="tooltip" title="View the INSTALL-WINDOWS, INSTALL-MAC, or INSTALL-LINUX guides once you unzip this to get started.">zip</a></span><br>
Source Code (tarball)
<span class="pull-right"><a href="https://github.com/GoldenCheetah/GoldenCheetah/archive/V3.5.tar.gz" title="View the INSTALL-WINDOWS, INSTALL-MAC, or INSTALL-LINUX guides once you unzip this to get started.">tarball</a></span><br>
</div>
</div>
</div>
</div>
<div class="col-md-12" >
<h3>Older versions and resources</h3>
<div class="col-md-9">
You can <a href="RELEASE/older-releases.html">download older releases</a> of Golden Cheetah.
There is a <a href="https://github.com/GoldenCheetah/GoldenCheetah/wiki/UG_Main-Page_Users-Guide">User guide</a>
and a <a href="https://github.com/GoldenCheetah/GoldenCheetah/wiki/FAQ">FAQ</a>.
The full Golden Cheetah source code is freely available from <a href="https://github.com/GoldenCheetah/GoldenCheetah/tree/master/">Github</a>.
</div>
</div>
<!--<div class="col-md-8 alert alert-info">
<p>
<ul>
<li>On Mac, open the DMG and drag and drop where you would like to install.</li>
<li>For Windows, run the Installer and follow the prompts.</li>
<li>For Linux, make it executable ($ chmod a+x GoldenCheetah*.AppImage), and run! ($ ./GoldenCheetah*.AppImage).</li>
</ul>
</p>
</div>-->
<div class="col-md-12" >
<h3>Development Releases</h3>
<div class="col-md-3" >
<img src="img/logo_wip.png" width="120" height="120" />
</div>
<!--<div class="col-md-12">-->
<p><a href="https://github.com/GoldenCheetah/GoldenCheetah/releases/tag/v3.6-RC1">Version 3.6 Release Candidate 1 February 2022</a><p>The first release candidate build for version 3.6 released in February 2022, it is feature complete, default comfiguration and translations will change before official release.</p><b>ALWAYS TAKE A BACKUP BEFORE RUNNING DEVELOPMENT BUILDS</b></p>
</p>
<br>
<!--</div>-->
</div>
<div class="col-md-12" >
<h3>*NEW* Snapshot Releases</h3>
<div class="col-md-3" >
<img src="img/logo_wip.png" width="120" height="120" />
</div>
<!--<div class="col-md-12">-->
<p><a href="http://goldencheetah-binaries.s3-website-us-east-1.amazonaws.com/">Snapshot Builds</a><p>We now automatically publish snapshot builds when significant new enhancements are available or when a major bug is squashed. These builds may contain regressions as they will only have been tested by developers (and we all know how reliable they are). Don't be surprised if things go wrong !</p><b>ALWAYS TAKE A BACKUP BEFORE RUNNING SNAPSHOT BUILDS</b></p>
</p>
<br>
<!--</div>-->
</div>
</div>
</section>
<section id="parallax2photo" class="section" data-stellar-background-ratio="0.5"> </section>
<section id="parallax2" class="section" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="align-center">
<div class="testimonial clearfix" >
<center class="author center-block">— Photo : <a href="https://www.justinknotzke.com/">Justin Knotzke</a></center>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-features" class="section appear clearfix featured">
<div class="container">
<!-- Example row of columns -->
<div class="row">
<h1>Features</h1>
<div class="col-md-6">
<h3>Import all popular file formats</h3>
<div class="col-md-6">
<ul>
<li>
TrainingPeaks (WKO, PWX)
</li>
<li>
PowerTap (RAW, CSV)
</li>
<li>
Garmin / ANT+ (FIT, FIT 2.0)
</li>
<li>
SportTracks (FITLOG)
</li>
<li>
Ambit (SML)
</li>
<li>
Sigma (SLF, SMF)
</li>
<li>
Ergomo (CSV)
</li>
<li>
Google Earth (KML)
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>
Garmin (TCX, GPX)
</li>
<li>
Polar (HRM)
</li>
<li>
SRMWin (SRM)
</li>
<li>
Computrainer (TXT)
</li>
<li>
iBike (CSV)
</li>
<li>
MotoACTV (CSV)
</li>
<li>
Hrv4Training and EliteHRV (HRV)
</li>
<li>
Row Perfect (RP3)
</li>
</ul>
</div>
<img src="img/devices.png" width="500" />
</div>
<div class="col-md-6">
<h3>Cloud Integration</h3>
<div class="col-md-6">
<ul>
<li>
Google Drive and Calendar
</li>
<li>
Dropbox
</li>
<li>
Strava
</li>
<li>
Today's Plan
</li>
<li>
Xert
</li>
<li>
SixCycle
</li>
<li>
SportTracks.mobi
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>
Withings Weight
</li>
<li>
Cycling Analytics
</li>
<li>
ErgDB
</li>
<li>
Ride With GPS
</li>
<li>
SportPlusHealth
</li>
<li>
Velo Hero
</li>
<li>
Selfloops
</li>
<li>
Trainingstagebuch.org
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<h3>Download directly</h3>
<div class="col-md-6">
<ul>
<li>
SRM PowerControl 5/6/7
</li>
<li>
PowerTap Cervo
</li>
<li>
O Synce Macro
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>
CycleOps Joule
</li>
<li>
Moxy Muscle Oxygen Monitor
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>Forensic Ride Analysis</h3>
<p>Multiple charts to examine and analyse ride and interval data including:</p>
<div class="col-md-6">
<ul>
<li>
Critical Power Modelling
</li>
<li>
Embedded Python and R
</li>
<li>
Performance Plot
</li>
<li>
Stress Plot
</li>
<li>
Pedal Force/Velocity
</li>
<li>
Histogram
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>
2d and 3d scatter
</li>
<li>
HR v Power
</li>
<li>
Map (Google / OSM)
</li>
<li>
Aerolab
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<h3>Edit, Search and Export Data</h3>
<ul>
<li>
Advanced data editor with undo, redo
</li>
<li>
Automatic anomaly detection
</li>
<li>
Fix tools for GPS, Spikes, Torque
</li>
<li>
Advanced interval find, free-text search, data filters and search for values
</li>
<li>
Export data to other applications and formats including; PWX, CSV, KML, TCX and JSON
</li>
</ul>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-3">
<a href="img/Wprime.png" data-toggle="lightbox" data-title="W’bal Stress Chart" data-lightbox="Ride Analysis">
<img src="img/Wprime.png" class="img-responsive"/>
</a>
<center class="small">W’<sub>bal</sub> Stress Chart</center>
</div>
<div class="col-md-3">
<a href="img/CPchart.png" data-toggle="lightbox" data-title="Critical Power Chart" data-lightbox="Ride Analysis">
<img src="img/CPchart.png" class="img-responsive" />
</a>
<center class="small">Critical Power Chart</center>
</div>
<div class="col-md-3">
<a href="img/RidePlot.png" data-toggle="lightbox" data-title="Ride Plot" data-lightbox="Ride Analysis">
<img src="img/RidePlot.png" class="img-responsive" />
</a>
<center class="small">Ride Plot</center>
</div>
<div class="col-md-3">
<a href="img/RideSummary.png" data-toggle="lightbox" data-title="Ride Summary" data-lightbox="Ride Analysis">
<img src="img/RideSummary.png" class="img-responsive" />
</a>
<center class="small">Ride Summary</center>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-6">
<h3>Track performance and Trends</h3>
<p>Track performance and physiological markers for over 300 metrics, user-definable best durations, model estimates:</p>
<div class="col-md-6">
<ul>
<li>
Personal Bests
</li>
<li>
Time In Zone
</li>
<li>
Power Peaks
</li>
<li>
CP, W’, P-Max
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>
Apply data filters
</li>
<li>
Banister and PMC
</li>
<li>
Ae/An TISS Stress
</li>
<li>
Power Distribution
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<h3>Compare Seasons, Rides, Intervals and Athletes</h3>
<ul>
<li>
Intuitive drag-and-drop interface
</li>
<li>
Supports most important charts; Critical Power, Ride, Histogram, Trends and more
</li>
<li>
CP also supports Delta and Percentage comparisons to a baseline season
</li>
</ul>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-3">
<a href="img/TISS.png" data-toggle="lightbox" data-title="An/Ae TISS Stress Chart" data-lightbox="Trends">
<img src="img/TISS.png" class="img-responsive" />
</a>
<center class="small">An/Ae TISS Stress Chart</center>
</div>
<div class="col-md-3">
<a href="img/CPdelta.png" data-toggle="lightbox" data-title="Critical Power Delta Compare" data-lightbox="Trends">
<img src="img/CPdelta.png" class="img-responsive" />
</a>
<center class="small">Critical Power Delta Compare</center>
</div>
<div class="col-md-3">
<a href="img/ModelEstimate.png" data-toggle="lightbox" data-title="Model Estimates" data-lightbox="Trends">
<img src="img/ModelEstimate.png" class="img-responsive" />
</a>
<center class="small">Model Estimates</center>
</div>
<div class="col-md-3">
<a href="img/PeakPower.png" data-toggle="lightbox" data-title="Peak Power" data-lightbox="Trends">
<img src="img/PeakPower.png" class="img-responsive" />
</a>
<center class="small">Peak Power</center>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-6">
<h3>Ride Indoors</h3>
<div class="col-md-6">
<ul>
<li>
Any ANT+ Power Meter
</li>
<li>
Any ANT+ FE-C Trainer (e.g. Vortex Smart/Neo, Kickr, Muin)
</li>
<li>
Racermate Computrainer
</li>
<li>
Monark LTx/LCx Ergometers
</li>
<li>
Tacx Fortius
</li>
<li>
Virtual Power
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>
Video Playback
</li>
<li>
Google Streetview
</li>
<li>
Realtime Plot
</li>
<li>
Pre-programmed Workouts (erg, crs, pgmf)
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<h3>Fully Customisable UI</h3>
<div class="col-md-6">
<ul>
<li>
User defined charts
</li>
<li>
Flexible Screen Layouts
</li>
<li>
Themes and Color Setup
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>
Summary Metrics and parameters
</li>
<li>
Native look and feel for Linux, Mac and Windows
</li>
</ul>
</div>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-3">
<a href="img/RideIndoor1.png" data-toggle="lightbox" data-title="Ride Indoor" data-lightbox="RideIndoor">
<img src="img/RideIndoor1.png" class="img-responsive" />
</a>
<!-- <center class="small">Ride Indoor</center>-->
</div>
<div class="col-md-3">
<a href="img/RideIndoor2.png" data-toggle="lightbox" data-title="Ride Indoor" data-lightbox="RideIndoor">
<img src="img/RideIndoor2.png" class="img-responsive" />
</a>
<!-- <center class="small">Ride Indoor</center>-->
</div>
<div class="col-md-3">
<a href="img/Customise.png" data-toggle="lightbox" data-title="Customise" data-lightbox="UI">
<img src="img/Customise.png" class="img-responsive" />
</a>
<!--<center class="small">Customise</center>-->
</div>
<div class="col-md-3">
<a href="img/configurable.png" data-toggle="lightbox" data-title="Configurable" data-lightbox="UI">
<img src="img/configurable.png" class="img-responsive" />
</a>
<!--<center class="small">About</center>-->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<section id="parallax3" class="section" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="align-center">
<div class="testimonial clearfix" >
<br/>
<h3>
It’s not the will to win that matters—everyone has that. It’s the will to prepare to win that matters
</h3>
<br/>
<span class="author">— Paul "Bear" Bryant</span>
<br/>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-tutorials" class="section appear clearfix featured">
<div class="container">
<!-- Example row of columns -->
<div class="row">
<h1>Tutorials</h1>
<div class="col-md-3">
<a href="https://vimeo.com/384576869" id="vimeo0" data-remote="https://player.vimeo.com/video/384576869" data-toggle="ekkoLightbox" data-width="800" data-title="What's New in GoldenCheetah Version 3.5"><img src="img/NewGC35_video.png" class="img-responsive"/></a><BR>
<center>What's New in GoldenCheetah 3.5</center><BR>
</div>
</div>
<div class="row">
<div class="col-md-3">
<a href="https://vimeo.com/192126358" id="vimeo1" data-remote="https://player.vimeo.com/video/192126358" data-toggle="ekkoLightbox" data-width="800" data-title="Workout Editor"><img src="img/WorkoutEditor_video.png" class="img-responsive"/></a><BR>
<center>Workout Editor</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/289711731" id="vimeo2" data-remote="https://player.vimeo.com/video/289711731" data-toggle="ekkoLightbox" data-width="800" data-title="TrainingPeaks mass import"><img src="img/TrainingPeaksMassImport_video.png" class="img-responsive"/></a><BR>
<center>TrainingPeaks mass import</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/100244204" id="vimeo3" data-remote="https://player.vimeo.com/video/100244204" data-toggle="ekkoLightbox" data-width="800" data-title="The Critical Power Chart"><img src="img/CPChart_video.png" class="img-responsive"/></a><BR>
<center>The Critical Power Chart</center><BR>
</div>
</div>
<div class="row">
<div class="col-md-3">
<a href="https://vimeo.com/100599100" id="vimeo4" data-remote="https://player.vimeo.com/video/100599100" data-toggle="ekkoLightbox" data-width="800" data- title="W'bal"><img src="img/WprimeBal_video.png" class="img-responsive"/></a><BR>
<center>W'bal</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/101867214" id="vimeo5" data-remote="https://player.vimeo.com/video/101867214" data-toggle="ekkoLightbox" data-width="800" data-title="Metric Trends Chart"><img src="img/MetricTrendsChart_video.png" class="img-responsive"/></a><BR>
<center>Metric Trends Chart</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/107577461" id="vimeo6" data-remote="https://player.vimeo.com/video/107577461" data-toggle="ekkoLightbox" data-width="800" data-title="TrainingPeaks Upload/Download"><img src="img/MetadataSearchingFiltering_video.png" class="img-responsive"/></a><BR>
<center>Metadata, Searching and Filtering</center><BR>
</div>
<div class="col-md-3">
</div>
</div>
<div class="row">
<div class="col-md-3">
<a href="https://vimeo.com/130530369" id="vimeo10" data-remote="https://player.vimeo.com/video/130530369" data-toggle="ekkoLightbox" data-width="800" data-title="Working with Intervals"><img src="img/Intervals_video.png" class="img-responsive"/></a><BR>
<center>Working with Intervals</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/111875430" id="vimeo11" data-remote="https://player.vimeo.com/video/111875430" data-toggle="ekkoLightbox" data-width="800" data-title="Download and Merge Data using a Moxy"><img src="img/MoxyData_video.png" class="img-responsive"/></a><BR>
<center>Download and Merge Data using a Moxy</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/151291424" id="vimeo12" data-remote="https://player.vimeo.com/video/151291424" data-toggle="ekkoLightbox" data-width="800" data-title="Working with Train View"><img src="img/TrainView_video.png" class="img-responsive"/></a><BR>
<center>Working with Train View</center><BR>
</div>
</div>
<div class="row">
<h2 style="color:#aeee00">Modelling</h2>
<div class="col-md-3">
<a href="https://vimeo.com/283303558" id="vimeo13" data-remote="https://player.vimeo.com/video/283303558" data-toggle="ekkoLightbox" data-width="800" data-title="The Critical Power Model"><img src="img/CriticalPowerModel_video.png" class="img-responsive"/></a><BR>
<center>The Critical Power Model</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/288970512" id="vimeo14" data-remote="https://player.vimeo.com/video/288970512" data-toggle="ekkoLightbox" data-width="800" data-title="Critical Power Model Fitting"><img src="img/CriticalPowerModelFitting_video.png" class="img-responsive"/></a><BR>
<center>Critical Power Model Fitting</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/291352968" id="vimeo15" data-remote="https://player.vimeo.com/video/291352968" data-toggle="ekkoLightbox" data-width="800" data-title="Critical Power Modelling in GoldenCheetah"><img src="img/CriticalPowerModelInGC_video.png" class="img-responsive"/></a><BR>
<center>Critical Power Modelling in GoldenCheetah</center><BR>
</div>
</div>
<div class="row">
<div class="col-md-3">
<a href="https://vimeo.com/311757866" id="vimeo16" data-remote="https://player.vimeo.com/video/311757866" data-toggle="ekkoLightbox" data-width="800" data-title="Banister Impulse-Response Modelling in GoldenCheetah"><img src="img/BanisterModellingInGC_video.png" class="img-responsive"/></a><BR>
<center>Banister Impulse-Response Modelling in GoldenCheetah</center><BR>
</div>
</div>
<div class="row">
<h2 style="color:#aeee00">Older tutorials</h2>
<div class="col-md-3">
<a href="https://vimeo.com/99817526" id="vimeo17" data-remote="https://player.vimeo.com/video/99817526" data-toggle="ekkoLightbox" data-width="800" data-title="What's New in GoldenCheetah Version 3.1"><img src="img/NewGC31_video.png" class="img-responsive"/></a><BR>
<center>What's New in GoldenCheetah 3.1</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/135905103" id="vimeo18" data-remote="https://player.vimeo.com/video/135905103" data-toggle="ekkoLightbox" data-width="800" data-title="What's New in GoldenCheetah Version 3.2"><img src="img/NewGC32_video.png" class="img-responsive"/></a><BR>
<center>What's New in GoldenCheetah 3.2</center><BR>
</div>
</div>
<div class="row">
<div class="col-md-3">
<a href="https://vimeo.com/145425005" id="vimeo19" data-remote="https://player.vimeo.com/video/145425005" data-toggle="ekkoLightbox" data-width="800" data-title="What's New in GoldenCheetah Version 3.3"><img src="img/NewGC33_video.png" class="img-responsive"/></a><BR>
<center>What's New in GoldenCheetah 3.3</center><BR>
</div>
<div class="col-md-3">
<a href="https://vimeo.com/191463556" id="vimeo20" data-remote="https://player.vimeo.com/video/191463556" data-toggle="ekkoLightbox" data-width="800" data-title="What's New in GoldenCheetah Version 3.4"><img src="img/NewGC34_video.png" class="img-responsive"/></a><BR>
<center>What's New in GoldenCheetah 3.4</center><BR>
</div>
</div>
</section>
<section id="parallax4photo" class="section" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
</div>
</div>
</section>
<section id="parallax4" class="section" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="align-center">
<div class="testimonial clearfix" >
<div class="testimonial clearfix" >
<center class="author center-block">— Photo : <a href="https://www.justinknotzke.com/">Justin Knotzke</a></center>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section id="section-contributor" class="section appear clearfix">
<div class="container">
<h1>Contributors</h1>
<p>Sean Rhea bought a PowerTap Pro on April 20, 2006 and immediately set
to figuring out how to use it from his Mac without using Virtual PC.
With help from Russ Cox and David Easter, he wrote two command-line
programs for downloading data from a PowerTap and interpreting that
data. Sean released these two tools, <code>ptdl</code> and
<code>ptunpk</code>, on May 4, 2006.</p>
<p>Later that year, Sean needed to learn QT for his real job, and he set
about writing a graphical version of his software for practice. He
released the first graphical version on September 6, 2006, changing the
name to GoldenCheetah in reference to an old legend from his days as a
runner.</p>
<p>Over the course of the next couple of years training with power became
more popular with devices being more widely used in the amateur ranks. The
community around the project grew and in 2010 as Sean stopped racing competively
he handed over leadership of the project to Mark Liversedge.</p>
<p>Since then, a large and global community has contributed additional code and
other support.</p>
<p><br></p>
<div class="col-md-3">
<ul>
<li>Alejandro Martinez</li>
<li>Alexandre Prokoudine</li>
<li>Alex Harsanyi</li>
<li>Andrew Bryson</li>
<li>Andy Froncioni</li>
<li>Antonius Riha</li>
<li>Arun Horne</li>
<li>Austin Roach</li>
<li>Ben Walding</li>
<li>Berend De Schouwer</li>
<li>Bruno Assis</li>
<li>Chris Cleeland</li>
<li>Christian Charette</li>
<li>Claus Assmann</li>
<li>Dag Gruneau</li>
<li>Damien Grauser</li>
<li>Daniel Besse</li>
<li>Darren Hague</li>
<li>Dave Waterworth</li>
<li>Dean Junk</li>
<li>Dmitry Monakhov</li>
</ul>
</div>
<div class="col-md-3">
<ul>
<li>Dr Phil Skiba</li>
<li>Eric Brandt</li>
<li>Eric Murray</li>
<li>Erik Boto</li>
<li>Frank Zschockelt</li>
<li>Gareth Coco</li>
<li>Greg Lonnon</li>
<li>Henrik Johansson</li>
<li>Ilja Booij</li>
<li>Irvin Sirotić</li>
<li>Ivor Hewitt</li>
<li>Joern Rischmuller</li>
<li>Jaime Jofre</li>
<li>Jamie Kimberley</li>
<li>Jan de Visser</li>
<li>Jim Ley</li>
<li>Johan Martensson</li>
<li>John Ehrlinger</li>
<li>Jon Beverley</li>
<li>Jon Escombe</li>
<li>Josef Gebel</li>
</ul>
</div>
<ul class="col-md-3">
<li>Julian Baumgartner</li>
<li>Julian Simioni</li>
<li>Justin Knotzke</li>
<li>Keisuke Yamaguchi</li>
<li>Keith Reynolds</li>
<li>Ken Sallot</li>
<li>Leif Warland</li>
<li>Lucas Garoto</li>
<li>Luke NRG</li>
<li>Magnus Gille</li>
<li>Marc Boudreau</li>
<li>Marcel Breij</li>
<li>Mark Buller</li>
<li>Mark Liversedge</li>
<li>Mark Rages</li>
<li>Michael Puchowicz</li>
<li>Mitsukuni Sato</li>
<li>Ned Harding</li>
<li>Nicholas Feng</li>
<li>Nick Burrett</li>
<li>Okano Takayoshi</li>
</ul>
<ul class="col-md-3">
<li>Omar Torres</li>
<li>Patrick McNerthney</li>
<li>Philip Willoughby</li>
<li>Rainer Clasen</li>
<li>Ralf Spenneberg</li>
<li>Robb Romans</li>
<li>Robert Carlsen</li>
<li>Roberto Massa</li>
<li>Ron Alford</li>
<li>Satoru Kurashiki</li>
<li>Sean Rhea</li>
<li>Simon Brewer</li>
<li>Stefan Schake</li>
<li>Stephan Lips</li>
<li>Steven Gribble</li>
<li>Thomas Weichmann</li>
<li>Tilman Schmiedeberg</li>
<li>Ugo Borello</li>
<li>Vianney Boyer</li>
<li>Walter Burki</li>
<li>Yves Arrouye</li>
</ul>
</div>
<p><br><br><br><br><br><br></p>
</section>
<section id="parallax5" class="section" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="align-center">
<div class="testimonial clearfix" >
<br/>
<h3>
If I have seen further it is by standing on the shoulders of Giants.
</h3>
<br/>
<span class="author">— Isaac Newton, <i>The Correspondence Of Isaac Newton</i></span>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-science" class="section appear clearfix">
<div class="container">
<div class="row">