diff --git a/.gitignore b/.gitignore index 5d381cc..d33bc9a 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,4 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +data/ \ No newline at end of file diff --git a/speed_map_display.py b/speed_map_display.py index ae28d4d..9f5034c 100644 --- a/speed_map_display.py +++ b/speed_map_display.py @@ -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)