project/shmuliar-FEAT-01-add-second-agent #33

Merged
Vladislav merged 4 commits from project/shmuliar-FEAT-01-add-second-agent into dev 2026-03-26 11:05:30 +02:00
Showing only changes of commit 1f6b02c5f6 - Show all commits

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