Skip to content

Commit 99b401a

Browse files
author
Martin Isenburg
committed
small fixes to ArgGIS toolbox scripts
1 parent c69778c commit 99b401a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ArcGIS_toolbox/scripts/lasclassify.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ def check_output(command,console):
119119
if sys.argv[9] == "false":
120120
command.append("-small_buildings")
121121

122-
### maybe keep tree overlap
122+
### maybe keep tree overhang
123123
if sys.argv[10] == "false":
124-
command.append("-keep_overlap")
124+
command.append("-keep_overhang")
125125

126126
### this is where the output arguments start
127127
out = 11

ArcGIS_toolbox/scripts_pipelines/flightlines_to_single_CHM_pit_free.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,9 @@ def check_output(command,console):
379379
### keep the highest
380380
command.append("-highest")
381381

382-
### on a grid with four by four times the final step size
382+
### on a grid with two by two times the final step size
383383
command.append("-step")
384-
command.append(str(0.25*float(sys.argv[arg_step].replace(",","."))))
384+
command.append(str(0.5*float(sys.argv[arg_step].replace(",","."))))
385385

386386
### maybe splat with half the laser beam width
387387
if sys.argv[arg_beam_width] != "#":

ArcGIS_toolbox/scripts_production/lasclassifyPro.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ def check_output(command,console):
132132
command.append("-small_buildings")
133133
c = c + 1
134134

135-
### maybe keep tree overlap
135+
### maybe keep tree overhang
136136
if sys.argv[c] == "false":
137-
command.append("-keep_overlap")
137+
command.append("-keep_overhang")
138138
c = c + 1
139139

140140
### maybe an output format was selected

0 commit comments

Comments
 (0)