From 57eb09e7029bcb33d0fbe37e9e7e4ba96a97a65f Mon Sep 17 00:00:00 2001 From: Paul Garlick Date: Wed, 8 Jul 2020 12:20:24 +0100 Subject: python: slope.py: Re-define filename of height data file. * python/slope.py: Read data from 'topography.txt' file. --- python/slope.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit