tcx-edit 是一个用于编辑 TCX文件Python脚本。它专门用于编辑由 Tom的Multisport GPS Watch 生成的 tcx文件,因此不同设备可能会有所不同。以下是其使用方法:

用法


tcx-edit.py [-h] tcx_file action arg1 [arg2 ... argN]

生成的文件会保存在同一路径下,命名为 <;tcx>;-edit.tcx

操作说明

  1. split_at:在参数指定的位置拆分 tcx文件,时间格式为 HH:MM:SS(从文件开头开始计时)。

示例:

```python

tcx-edit.py tcx_file split_at 00:15:10 01:15:00

```

此操作会计算每个分段的圈数信息,如总时间、距离、最大速度、平均和最大心率。

  1. merge:合并圈数。参数格式为 n1-n2,其中 n1 为起始圈,n2 为结束圈。

示例:

```python

tcx-edit.py tcx_file merge 2-5

```