Browse Source

biking is not walking.

meyn 0.1.2
Gisle Aune 4 months ago
parent
commit
4d1dd75c9d
  1. 2
      index.mjs
  2. 4
      lib/tcx.mjs

2
index.mjs

@ -54,7 +54,7 @@ async function main() {
console.log("Going ahead with", act.activityId, act.activityType.typeKey)
await garmin.downloadOriginalActivityData(act, "/tmp/", "tcx")
const input = await generateTrimlogInput(`/tmp/${act.activityId}.tcx`, act.activityName)
const input = await generateTrimlogInput(`/tmp/${act.activityId}.tcx`, act.activityName, act.activityType?.typeKey)
input.tags.push({key: "gc:ActivityID", value: id})

4
lib/tcx.mjs

@ -1,7 +1,7 @@
import * as fs from "fs/promises";
import { parseString } from "xml2js";
export function generateTrimlogInput(filename, name = "Walk") {
export function generateTrimlogInput(filename, name = "Walk", type = "walk") {
return new Promise(async(resolve, reject) => {
parseString(await fs.readFile(filename, "utf-8"), (err, res) => {
if (err != null) {
@ -45,7 +45,7 @@ export function generateTrimlogInput(filename, name = "Walk") {
const out = {
date: dateStr,
contents: [{rawActivity: {
kind: "Walking",
kind: type === "cycling" ? "Biking" : "Walking",
sets: [],
effortScale: 1,
weight: 0,

Loading…
Cancel
Save