diff options
author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-07-08 12:20:24 +0100 |
---|---|---|
committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-07-08 13:56:05 +0100 |
commit | 57eb09e7029bcb33d0fbe37e9e7e4ba96a97a65f (patch) | |
tree | 324e902e21db71668a3c5894ab82c080ede83965 | |
parent | 5b0a98fcf57e43796638dae9058d118f07e8cbec (diff) | |
download | fullSWOF-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-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() |