Compare commits

..

2 Commits

Author SHA1 Message Date
hasslesstech 1f6b02c5f6 [P] Add a simple .gpx to .csv file converter
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
2026-03-25 23:39:32 +02:00
hasslesstech 69523a9fd2 [P] Reduce batch size to improve viewing experience
Component testing / Hub testing (push) Successful in 25s
Component testing / Integration smoke testing (push) Has been cancelled
Component testing / Store testing (push) Has been cancelled
2026-03-25 23:35:24 +02:00
2 changed files with 14 additions and 1 deletions
+13
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
+1 -1
View File
@@ -148,7 +148,7 @@ services:
MQTT_BROKER_HOST: "mqtt" MQTT_BROKER_HOST: "mqtt"
MQTT_BROKER_PORT: 1883 MQTT_BROKER_PORT: 1883
MQTT_TOPIC: "processed_data_topic" MQTT_TOPIC: "processed_data_topic"
BATCH_SIZE: 20 BATCH_SIZE: 4
ports: ports:
- "9000:8000" - "9000:8000"
networks: networks: