[P] Add a simple .gpx to .csv file converter
All checks were successful
Component testing / Hub testing (push) Successful in 33s
Component testing / Store testing (push) Successful in 32s
Component testing / Integration smoke testing (push) Successful in 3m0s

This commit was merged in pull request #33.
This commit is contained in:
2026-03-25 23:39:32 +02:00
parent 69523a9fd2
commit 1f6b02c5f6

View File

@@ -0,0 +1,13 @@
print('lat,lon')
try:
while True:
i = input()
if '<trkpt' not in i:
continue
si = i.split('"')[1::2]
print(f"{si[0]},{si[1]}")
except EOFError:
pass