From 7585b7c82e4c7edb0ecd22180e993cc5d61a4b0e Mon Sep 17 00:00:00 2001 From: Dan Howe Date: Tue, 24 Jul 2018 12:20:51 +1000 Subject: [PATCH] Update field names --- las_manipulation.py | 2 +- las_outputs.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/las_manipulation.py b/las_manipulation.py index 1a43355..c9e7a2d 100644 --- a/las_manipulation.py +++ b/las_manipulation.py @@ -363,7 +363,7 @@ def main(): params_file=pd.read_excel(input_file, sheet_name="PARAMS") for i, row in params_file.iterrows(): - print("Starting to process %s" % row['Beach']) + print("Starting to process %s" % row['BEACH']) input_las = row['INPUT LAS'] initial_crop_poly = row['INITIAL CROP POLY'] lasground_step = row['LASGROUND STEP'] diff --git a/las_outputs.py b/las_outputs.py index a778533..61dac57 100644 --- a/las_outputs.py +++ b/las_outputs.py @@ -186,8 +186,8 @@ def main(): params_file=pd.read_excel(input_file, sheet_name="PARAMS") for i, row in params_file.iterrows(): - print("Starting to process %s" % row['Beach']) - beach=row['Beach'] + print("Starting to process %s" % row['BEACH']) + beach=row['BEACH'] survey_date = str(row['SURVEY DATE']) original_las = row['INPUT LAS'] classified_las_dir = row['LAS CLASSIFIED FOLDER']