Heart rate data is missing from Movescount export
-
@margusl Thank you very much for this hint! It seems to do most of the things I wanted.
-
A little update. The thing with MaxHR is that actually it is saved under the name PeakHr so it is not shown in .json.
I managed to get that information and here is what I did, in case someone else could profit from it.
First I wrote simple Python script to extract MoveID from each move in that .json file.
Second I wrote a JMeter https://jmeter.apache.org/ script to go through all my moves in Movescount by MoveID and save that PeakHr value for each move.
Third I wrote another Python script to merge fetched PeakHr value with other data and saved all my moves to .csv file.
Fourth I wrote yet another Python script that will look Movescount data folder (c:/Users/UserName/AppData/Roaming/Suunto/Moveslink) for new .xml files and if new file is found all the useful content is added to .csv file. Mainly time of the exercise and hr values. Also script asks user to type name of the activity and distance traveled.
I created this last script to extract new moves from filesystem rather than from Movescount.
All in all I guess I am ready to migrate from Movescount now. Thanks for your all help and happy moving!