From 7e05a5b04ea159aacef9040f8702a71399efba6e Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Mon, 27 Nov 2023 16:34:08 -0500 Subject: [PATCH] Minor fix --- opendm/dem/commands.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/opendm/dem/commands.py b/opendm/dem/commands.py index a6ae75cf..f7d0ed7b 100755 --- a/opendm/dem/commands.py +++ b/opendm/dem/commands.py @@ -73,7 +73,6 @@ def create_dem(input_point_cloud, dem_type, output_type='max', radiuses=['0.56'] start = datetime.now() kwargs = { - 'bin': 'renderdem', 'input': input_point_cloud, 'outdir': outdir, 'outputType': output_type, @@ -83,7 +82,7 @@ def create_dem(input_point_cloud, dem_type, output_type='max', radiuses=['0.56'] 'decimation': 1 if decimation is None else decimation, 'classification': 2 if dem_type == 'dtm' else -1 } - system.run('"{bin}" "{input}" ' + system.run('renderdem "{input}" ' '--outdir "{outdir}" ' '--output-type {outputType} ' '--radiuses {radiuses} '