aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Garlick <pgarlick@tourbillion-technology.com>2020-07-08 12:20:24 +0100
committerPaul Garlick <pgarlick@tourbillion-technology.com>2020-07-08 13:56:05 +0100
commit57eb09e7029bcb33d0fbe37e9e7e4ba96a97a65f (patch)
tree324e902e21db71668a3c5894ab82c080ede83965
parent5b0a98fcf57e43796638dae9058d118f07e8cbec (diff)
downloadfullSWOF-utils-57eb09e7029bcb33d0fbe37e9e7e4ba96a97a65f.tar.gz
python: slope.py: Re-define filename of height data file.
* python/slope.py: Read data from 'topography.txt' file.
-rwxr-xr-xpython/slope.py2
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()