From dd551eda5c7dd10ca9ea57fff51232b495266842 Mon Sep 17 00:00:00 2001 From: alavenant Date: Wed, 15 May 2024 17:24:56 +0200 Subject: [PATCH] Update macro/ex_filtering_points.py update parser help Co-authored-by: leavauchier <120112647+leavauchier@users.noreply.github.com> --- macro/ex_filtering_points.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macro/ex_filtering_points.py b/macro/ex_filtering_points.py index 988fc6d..81855ce 100755 --- a/macro/ex_filtering_points.py +++ b/macro/ex_filtering_points.py @@ -7,7 +7,7 @@ """ def parse_args(): - parser = argparse.ArgumentParser("Tools for apply pdal pipelines") + parser = argparse.ArgumentParser("Tool to apply pdal pipelines to modify classification") parser.add_argument("--input", "-i", type=str, required=True, help="Input las file") parser.add_argument("--output", "-o", type=str, required=True, help="Output las file") return parser.parse_args()