Hey.How could I add to Activity / Ride (chart settings > user data) section, a custom chart with average speed in time?
For power there's xPower which is something I like to have for speed.
I just need a direction to write it myself.
Hi,I've got a look at: https://github.com/GoldenCheetah/GoldenCheetah/wiki/UG_ChartTypes_Activities#user-data-curvesMy question is: how can I change following formula:100* (HEARTRATE - config(rhr)) / (config(maxhr) - config(rhr))if I would like to display same chart of HR with different zone colors but representing the curve not as a percentage of HR but with the original values measured on BPM on y-axis?
I've already defined HR % zones on athlete settings, starting of max HR eg. 172 bpmHR zone 1 form 0 to 68% of max HR = 117 Would like to display as a grey color on the chart;HR zone 2 from 68 to 79% of max HR = 135 Would like to display as a grey color on teh chart;... and so on
finalise {
# we just fetch samples at end
xx <- samples(SECS);
yy <- rep(157,samples(SECS));
}
x { xx; }
y { yy; }
}
Just to have for example a yellow band area for eg. HR Zone 4 from 157 to 164 bpmAnd another dubt:If I would like to display a colored horizontal band area between two HR values defined on athlete setting or simply typing two values on a new activity chart how can I add entire zone eg. 4 on second vale on following formula:{finalise {
# we just fetch samples at end
xx <- samples(SECS);
yy <- rep(157,samples(SECS));
}
x { xx; }
y { yy; }
}
Just to have for example a yellow band area for eg. HR Zone 4 from 157 to 164 bpm
sorry for all my questions...
Is there an overall guide with functions, command lines and everything that could help me...
By my side I'm just trying to replicate Polar (HR zone colors band) and strava Chart (average speed on min/km every 1 Km)... as in attach.