forked from sitn/pytree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_config.yml
218 lines (214 loc) · 4.57 KB
/
example_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
vars:
debug: true
gmf_url: ""
# path to cpotree exectuable
cpotree_executable: extract_profile
# Available point clouds. NOTE: pointclouds CRS must be the same as the APP, reprojection is not implemented!
pointclouds:
swissSURFACE3D: ./path/to/metadata.json
# point cloud to use in profile
default_point_cloud: swissSURFACE3D
# default profile width
width: 10
# point size on d3 plot in pixels
point_size: 1
# Max point number allowed in a profile. Passed this limit (approx...), the following requests are canceled client side (gmf2)
max_point_number: 75000
# Tolerance of lateral movements during vertical pan. Passing this threshold, new points will be requested
vertical_pan_tolerance: 0.2
# max LOD for first profile request (will extend from LOD 0 to LOD initialLOD)
initialLOD: 6
# Classification colors for GMF2
classification_colors:
0:
color: 100, 250, 100
name: Unknown
value: Unknown
visible: 1
1:
color: 100, 100, 100
name: Unclassified
value: Unclassified
visible: 1
2:
color: 200, 200, 200
name: Ground
value: Ground
visible: 1
3:
color: 0, 125, 0
name: Low Vegetation
visible: 1
4:
color: 0, 250, 125
name: Medium Vegetation
value: Medium Vegetation
visible: 1
5:
color: 40, 150, 0
name: High Vegetation
value: High Vegetation
visible: 1
6:
color: 140, 50, 0
name: Building
value: Building
visible: 1
7:
color: 120, 120, 120
name: Low Point
value: Low Point
visible: 1
8:
color: 250, 250, 0
name: Key-Point
value: Key-Point
visible: 1
10:
color: 0, 89, 98
name: Rail
value: Rail
visible: 1
11:
color: 0, 89, 98
name: Road Surface
value: Road Surface
visible: 1
12:
color: 0, 89, 98
name: Overlap
value: Overlap
visible: 1
13:
color: 120, 120, 120
name: Wire Guard
visible: 1
14:
color: 120, 120, 120
name: Wire Conductor
value: Wire Conductor
visible: 1
15:
color: 120, 120, 120
name: Transmission Tower
visible: 1
16:
color: 120, 120, 120
name: Wire-structure connector
value: Wire-structure connector
visible: 1
17:
color: 120, 120, 120
name: Bridge Deck
value: Bridge Deck
visible: 1
18:
color: 120, 120, 250
name: Hihh noise
value: Hihh noise
visible: 1
64:
color: 0, 120, 120
name: Cars
value: Cars
visible: 1
65:
color: 0, 120, 120
name: Cranes
value: Cranes
visible: 1
70:
color: 0, 120, 120
name: Facades
value: Facades
visible: 1
71:
color: 0, 120, 120
name: Walls
value: Walls
visible: 1
99:
color: 0, 120, 120
name: Outside perimeter
value: Outside perimeter
visible: 1
default_color: RGB(250,150,150)
# Default profile attribute (material)
default_attribute: CLASSIFICATION
# Points attributes and materials. The visible property defines which atribute becomes an option in material select in the lidarpanel
default_point_attribute: CLASSIFICATION
point_attributes:
INTENSITY:
name: Intensité
value: INTENSITY
element: 1
bytes: 2
visible: 1
RGB:
name: Couleur
value: RGB # use COLOR_PACKED as value here for SITN data sets
elements: 4
bytes: 3
visible: 0
CLASSIFICATION:
name: Classification
value: CLASSIFICATION
elements: 1
bytes: 1
visible: 1
POSITION_CARTESIAN:
name: Position-cartesian
value: POSITION_CARTESIAN
elements: 3
bytes: 12
visible: 0
POSITION_PROJECTED_PROFILE:
name: Position-projected
value: POSITION_PROJECTED_PROFILE
elements: 2
bytes: 8
visible: 0
COLOR_PACKED:
name: Couleur
value: COLOR_PACKED
elements: 4
bytes: 4
visible: 1
# here you can define as many steps as you like
max_levels:
25:
max: 14
width: 2
50:
max: 13
width: 2
75:
max: 12
width: 3
100:
max: 11
width: 3
150:
max: 10
width: 4
250:
max: 9
width: 4
350:
max: 9
width: 4
500:
max: 8
width: 5
1000:
max: 8
width: 5
5000:
max: 7
width: 6
7500:
max: 6
width: 6
100000:
max: 6
width: 7