Private
Public Access
1
0
Files
rowsandall/rowers/templates/analysis.html
2019-03-21 19:11:41 +01:00

143 lines
3.5 KiB
HTML

{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}Rowsandall - Analysis {% endblock %}
{% block main %}
<h1>Analysis</h1>
<p>Functionality to analyze multiple workouts.</p>
<ul class="main-content">
<li class="rounder">
<h2>Ranking Pieces</h2>
<a href="/rowers/ote-bests2/">
<div class="vignet">
<img src="/static/img/rankingpiece.png"
alt="Ranking Piece">
</div>
</a>
<p>
Analyze your Concept2 ranking pieces over a date range and predict your pace on other pieces.
</p>
</li>
<li class="rounder">
<h2>Compare Workouts</h2>
{% if team %}
<a href="/rowers/team-compare-select/team/{{ team.id }}/">
{% else %}
<a href="/rowers/team-compare-select/team/0/">
{% endif %}
<div class="vignet">
<img src="/static/img/strokeanalysis.png"
alt="Compare Workouts">
</div>
</a>
<p>
Compare two or more of your workouts
</p>
</li>
<li class="rounder">
<h2>Stroke Analysis</h2>
<a href="/rowers/flexall/">
<div class="vignet">
<img src="/static/img/strokeanalysis.png"
alt="Stroke Analysis">
</div>
</a>
<p>
Plot all strokes in a date range and analyze several parameters (Power, Pace, SPM, Heart Rate).
</p>
</li>
<li class="rounder">
<h2>Power Histogram</h2>
<a href="/rowers/histo/">
<div class="vignet">
<img src="/static/img/histogram.png" alt="Power Histogram">
</div>
</a>
<p>
Plot a power histogram of all your strokes over a date range.
</p>
</li>
<li class="rounder">
<h2>Statistics</h2>
<a href="/rowers/cumstats/">
<div class="vignet">
<img src="/static/img/statistics.PNG" alt="Statistics">
</div>
</a>
<p>
Statistics of stroke metrics over a date range
</p>
</li>
<li class="rounder">
<h2>Box Chart</h2>
<a href="/rowers/user-boxplot-select/">
<div class="vignet">
<img src="/static/img/boxplot.png" alt="Box Chart">
</div>
</a>
<p>
BETA: Box Chart Statistics of stroke metrics over a date range
</p>
</li>
<li class="rounder">
<h2>OTW Critical Power</h2>
<a href="/rowers/otw-bests/">
<div class="vignet">
<img src="/static/img/otwcp.png" alt="OTW Critical Power">
</div>
</a>
<p>
Analyse power vs piece duration to make predictions. For On-The-Water rowing.
</p>
</li>
<li class="rounder">
<h2>OTE Critical Power</h2>
<a href="/rowers/ote-ranking/">
<div class="vignet">
<img src="/static/img/otecp.png" alt="OTE Critical Power">
</div>
</a>
<p>
Analyse power vs piece duration to make predictions, for erg pieces.
</p>
</li>
<li class="rounder">
<h2>Trend Flex</h2>
<a href="/rowers/user-multiflex-select/">
<div class="vignet">
<img src="/static/img/trendflex.png" alt="Trend Flex">
</div>
</a>
<p>
Select workouts and make X-Y charts of averages over various metrics
</p>
</li>
<li class="rounder">
<h1>Power Progress</h1>
<a href="/rowers/fitness-progress/">
<div class="vignet">
<img src="/static/img/powerprogress.png" alt="Power Progress">
</div>
</a>
<p>
Monitoring power duration evidence from all your workouts. Feel free to explore.
</p>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_analytics.html' %}
{% endblock %}