diff --git a/frictionmap/src/reftrack_functions.py b/frictionmap/src/reftrack_functions.py index 55cd301..b26f42b 100644 --- a/frictionmap/src/reftrack_functions.py +++ b/frictionmap/src/reftrack_functions.py @@ -25,7 +25,7 @@ def load_reftrack(path2track: str) -> np.array: """ with open(path2track, 'r') as fh: - reftrack = np.genfromtxt(fh, delimiter=';') + reftrack = np.genfromtxt(fh, delimiter=',') return reftrack