diff options
-rwxr-xr-x | python/slope.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/slope.py b/python/slope.py index c53b811..4a5fa4b 100755 --- a/python/slope.py +++ b/python/slope.py @@ -5,7 +5,7 @@ import matplotlib.pyplot as plt import numpy as np import os -with open('../topography/LiDAR_DTM_cropped.xyz', "r") as data: +with open('./topography.txt', "r") as data: while True: p = data.tell() line = data.readline() |