Skip to content

Commit 6035554

Browse files
committed
corrected version number and deleted overlooked trouble-shooting code
1 parent 8c0ae78 commit 6035554

File tree

2 files changed

+16
-32
lines changed

2 files changed

+16
-32
lines changed

CBlueApp.py

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,12 @@
6666
from Las import Las
6767
from Tpu import Tpu
6868

69-
#from matplotlib import style
70-
7169

7270
LARGE_FONT = ('Verdanna', 12)
7371
NORM_FONT = ('Verdanna', 10)
7472
NORM_FONT_BOLD = ('Verdanna', 10, 'bold')
7573
SMALL_FONT = ('Verdanna', 8)
7674

77-
#style.use('ggplot') # 'dark_background'
78-
7975

8076
class CBlueApp(tk.Tk):
8177
""" Gui used to determine the total propagated
@@ -524,33 +520,6 @@ def begin_tpu_calc(self):
524520
if l.endswith('.las')]
525521

526522
las_files = [Path(l) for l in las_files]
527-
lasses_to_process = [
528-
'2017_3805000e_42195000n_las',
529-
'2017_3805000e_42205000n_las',
530-
'2017_3805000e_42200000n_las',
531-
'2017_3805000e_42210000n_las',
532-
'2017_3810000e_42195000n_las',
533-
'2017_3810000e_42200000n_las',
534-
'2017_3810000e_42210000n_las',
535-
'2017_3810000e_42205000n_las',
536-
'2017_3815000e_42195000n_las',
537-
'2017_3815000e_42205000n_las',
538-
'2017_3815000e_42200000n_las',
539-
'2017_3815000e_42210000n_las',
540-
'2017_3820000e_42195000n_las',
541-
'2017_3820000e_42205000n_las',
542-
'2017_3820000e_42210000n_las',
543-
'2017_3820000e_42200000n_las',
544-
'2017_3825000e_42195000n_las',
545-
'2017_3825000e_42200000n_las',
546-
'2017_3825000e_42205000n_las',
547-
'2017_3825000e_42210000n_las',
548-
'2017_3830000e_42195000n_las',
549-
'2017_3830000e_42200000n_las',
550-
'2017_3830000e_42205000n_las',
551-
'2017_3830000e_42210000n_las']
552-
las_files = [str(l) for l in las_files if l.stem in lasses_to_process]
553-
554523
num_las = len(las_files)
555524

556525
def signal_completion():

cblue_configuration.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
{"directories": {"tpu": "D:/JeromesCreek/tpu_dir", "sbet": "D:/JeromesCreek", "las": "D:/JeromesCreek"}, "subaqueous_LUTs": {"RIEGL": "./lookup_tables/Riegl_look_up_fit_HG0995_1sig.csv", "ECKV": "./lookup_tables/ECKV_LUT_HG0995_1sig.csv"}, "multiprocess": true, "number_cores": 4, "cBLUE_version": "v2.1.1", "sensor_model": "Riegl VQ-880-G", "water_surface_ellipsoid_height": 5.55}
1+
{
2+
"directories": {
3+
"tpu": "D:/JeromesCreek/tpu_dir",
4+
"sbet": "D:/JeromesCreek",
5+
"las": "D:/JeromesCreek"
6+
},
7+
"subaqueous_LUTs": {
8+
"RIEGL": "./lookup_tables/Riegl_look_up_fit_HG0995_1sig.csv",
9+
"ECKV": "./lookup_tables/ECKV_LUT_HG0995_1sig.csv"
10+
},
11+
"multiprocess": true,
12+
"number_cores": 4,
13+
"cBLUE_version": "v2.2.1",
14+
"sensor_model": "Riegl VQ-880-G",
15+
"water_surface_ellipsoid_height": 2.0
16+
}

0 commit comments

Comments
 (0)