Compare commits

..

1 Commits

Author SHA1 Message Date
7c3700168a moved data files to separate folder 2024-04-17 17:57:16 +02:00
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -160,3 +160,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
data/

View File

@ -108,7 +108,7 @@ if __name__ == '__main__':
(Vec2(7.001849, 46.216559), "Saint-Maurice", "right")
]
data = GPSLoader.load_data(f"{name}.csv")
data = GPSLoader.load_data(f"data/{name}.csv")
speeds = list(map(lambda s: s.convert(Unit.KM_H).value, data["speeds"]))
path = Path(data["points"], speeds)