Добавил обработку координат для жижи
All checks were successful
/ build (push) Successful in 3m12s
/ deploy (push) Successful in 1m34s

This commit is contained in:
urec56 2025-07-28 19:51:19 +03:00
parent 46ec037307
commit 227e5bf836

View file

@ -39,7 +39,7 @@ def generate_kml(file: StringIO, track_name: str):
points = []
for line in file.readlines():
if line.strip() == line:
if len(line.strip()) == 0:
continue
coords = line.split(":")
coord = coords[0].strip()