구글의 console을 이용하면 runtatics의 GPS로그를 추출할 수 있다.

tcx 로 저장되므로 변환기를 사용하여 gpx로 변환하고,

gpx파일들을 하나로 합쳐서 endomondo 등에 import하면  됨.



Open the activity listing of a year and put the script into the web console of your browser (I’ve used Chrome) and it will download all activities:

var links = []; $('.type > a').each ( function () {
  links.push($(this).attr('href'))
} )
setInterval(function () {
    if ( !links.length) { return; }
    var link = links.shift();
    link += '.tcx';
    var newFrame = document.createElement('iframe');
    document.body.appendChild(newFrame);
    newFrame.style = 'width: 1px; height: 1px;';
    newFrame.src = link;
}, 500);

It’s just a quick hack but it work

+ Recent posts