pull/1725/head
Piero Toffanin 2023-11-27 16:34:08 -05:00
rodzic e0ab6ae7ed
commit 7e05a5b04e
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -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} '