Calories not displayed

174 views
Skip to first unread message

jakob jacobi

unread,
Aug 27, 2025, 10:12:03 AM (11 days ago) Aug 27
to golden-cheetah-users
I'm using SigmaRox 11.1 and GC 3.7.

Why the total calories are not displayed?

Thanks!
Jakob

Bildschirmfoto vom 2025-08-27 16-03-51.pngBildschirmfoto vom 2025-08-27 16-04-12.pngBildschirmfoto vom 2025-08-27 16-04-37.png

jakob jacobi

unread,
Aug 27, 2025, 10:15:09 AM (11 days ago) Aug 27
to golden-cheetah-users
... ah... forgot to mention... and it's used with appimage on ubuntu.

Peret

unread,
Aug 27, 2025, 11:12:05 AM (11 days ago) Aug 27
to golden-cheetah-users
You need, at least, to monitor heart rate for them to be computed

Ale Martinez

unread,
Aug 27, 2025, 11:14:02 AM (11 days ago) Aug 27
to golden-cheetah-users
El miércoles, 27 de agosto de 2025 a la(s) 11:15:09 a.m. UTC-3, jakob jacobi escribió:
... ah... forgot to mention... and it's used with appimage on ubuntu.

On Wednesday, August 27, 2025 at 4:12:03 PM UTC+2 jakob jacobi wrote:
I'm using SigmaRox 11.1 and GC 3.7.

Why the total calories are not displayed?

jakob jacobi

unread,
Aug 27, 2025, 11:32:51 AM (11 days ago) Aug 27
to golden-cheetah-users
thanks for fast reply.

but heartrate is monitored in that file too...

Bildschirmfoto vom 2025-08-27 17-31-07.png

Ale Martinez

unread,
Aug 27, 2025, 11:34:16 AM (11 days ago) Aug 27
to golden-cheetah-users
PS: since you have Work you can use it as an estimate of Calories,  if your cycling efficiency is around 23% it should be more accurate than estimates from HR. 

jakob jacobi

unread,
Aug 27, 2025, 11:36:47 AM (11 days ago) Aug 27
to golden-cheetah-users
Calories_(HR) - Total Calories estimated from Time Moving, Heart Rate, Weight, Sex and Age

All necessary data are collected or provided. In the profile on GC and also in the bike computer.

jakob jacobi

unread,
Aug 27, 2025, 11:40:00 AM (11 days ago) Aug 27
to golden-cheetah-users
thanks. how can i do that? i can find only 'Calories' on the code.

Bildschirmfoto vom 2025-08-27 17-39-12.pngBildschirmfoto vom 2025-08-27 17-38-56.png

Ale Martinez

unread,
Aug 27, 2025, 11:46:20 AM (11 days ago) Aug 27
to golden-cheetah-users
El miércoles, 27 de agosto de 2025 a la(s) 12:36:47 p.m. UTC-3, jakob jacobi escribió:
Calories_(HR) - Total Calories estimated from Time Moving, Heart Rate, Weight, Sex and Age

All necessary data are collected or provided. In the profile on GC and also in the bike computer.

You need Hear Rate in "Basic Data" tab, your screen capture is for "LAP" tab.

jakob jacobi

unread,
Aug 27, 2025, 11:53:55 AM (11 days ago) Aug 27
to golden-cheetah-users

the screenshots before are from 'session' tab. heartrate is displayed in 'basic' tab too.

Bildschirmfoto vom 2025-08-27 17-52-43.png

Ale Martinez

unread,
Aug 27, 2025, 12:00:42 PM (11 days ago) Aug 27
to golden-cheetah-users
Here is the code: https://github.com/GoldenCheetah/GoldenCheetah/blob/cdcd47e4c19020ee5cf1ff1b9a3a861b8fc82aa7/src/Metrics/BasicRideMetrics.cpp#L3802-L3830, it needs Duration, Average Heart Rate, Age and Weight.
By use Work as an estimate for Calories I mean just interpret the kJ as kCal (yes, they are different units and measure different things, but when efficiency is around 23%, the factors cancel out).  

Ale Martinez

unread,
Aug 27, 2025, 5:31:21 PM (11 days ago) Aug 27
to golden-cheetah-users
BTW, one possible error source is age being negative, have you checked the century of your DOB?

jakob jacobi

unread,
Aug 29, 2025, 5:04:09 AM (9 days ago) Aug 29
to golden-cheetah-users
yes, date of birth is correct with 1981.

in GC3.6 the calories were displayed as it was messured/calculated by the bike computer. used later a 3.6 snapshot coz some activity data from the rox11.1 were interpreted different in earlier version. since 3.7 the calories are displayed with 0. but in raw data the value is available...

Ale Martinez

unread,
Aug 29, 2025, 1:21:19 PM (9 days ago) Aug 29
to golden-cheetah-users
El viernes, 29 de agosto de 2025 a la(s) 6:04:09 a.m. UTC-3, jakob jacobi escribió:
yes, date of birth is correct with 1981.

in GC3.6 the calories were displayed as it was messured/calculated by the bike computer. used later a 3.6 snapshot coz some activity data from the rox11.1 were interpreted different in earlier version. since 3.7 the calories are displayed with 0.

This is weird since the code computing Calories from HR has not changed in the last 10 years... Lets do this: try to reproduce the issue in a minimum setup: create a new athlete, configure DOB and Sex and import that ride, if the problem still is there, take a backup and attach the zip file so I can debug.
 
but in raw data the value is available...

That is a different kind of animal... what you see in SESSION tab is the estimate from your bike computer, to use that value you have some options: manually override the GoldenCheetah metric with that value or learn how to create a User Metric using the XDATA function to retrieve that value automatically.

jakob jacobi

unread,
Aug 31, 2025, 6:08:04 AM (7 days ago) Aug 31
to golden-cheetah-users
aaahh... i got it... you were right with DOB. when you go to the athlets input like DOB, height, weight etc the year of DOB is just displayed with last two digits and it was 81. when clicking on it, it shows 2081 instead of 1981. after edit that the calories are displayed in overview. maybe it's possible to change that to 4 digits instead of only two.

thanks for your help! :)

Bildschirmfoto vom 2025-08-31 12-02-00.pngBildschirmfoto vom 2025-08-31 12-02-13.png

Ale Martinez

unread,
Aug 31, 2025, 10:48:36 AM (7 days ago) Aug 31
to golden-cheetah-users
El domingo, 31 de agosto de 2025 a la(s) 7:08:04 a.m. UTC-3, jakob jacobi escribió:
aaahh... i got it... you were right with DOB. when you go to the athlets input like DOB, height, weight etc the year of DOB is just displayed with last two digits and it was 81. when clicking on it, it shows 2081 instead of 1981. after edit that the calories are displayed in overview. maybe it's possible to change that to 4 digits instead of only two.

jakob jacobi

unread,
Sep 1, 2025, 2:45:11 AM (7 days ago) Sep 1
to golden-cheetah-users
---------- Forwarded message ---------
From: Ale Martinez <Unknown>
Date: Sunday, August 31, 2025 at 4:48:36 PM UTC+2
Subject: Re: Calories not displayed
To: golden-cheetah-users <Unknown>

Users doesn't seem willing to check this even when directed to do so ...

 
 

thanks for your support and help! and also for providing such a tool like GC for all of us. but a little bit less arrogance would suit you better, sir... have a good one.

Ale Martinez

unread,
Sep 1, 2025, 10:30:10 AM (6 days ago) Sep 1
to golden-cheetah-users
El lunes, 1 de septiembre de 2025 a la(s) 3:45:11 a.m. UTC-3, jakob jacobi escribió:
---------- Forwarded message ---------
From: Ale Martinez <Unknown>
Date: Sunday, August 31, 2025 at 4:48:36 PM UTC+2
Subject: Re: Calories not displayed
To: golden-cheetah-users <Unknown>

Users doesn't seem willing to check this even when directed to do so ...

 
 

thanks for your support and help! and also for providing such a tool like GC for all of us. but a little bit less arrogance would suit you better, sir... have a good one.

You are right, the generalization is incorrect, I should have written "some users", sorry... 
Reply all
Reply to author
Forward
0 new messages