-
Notifications
You must be signed in to change notification settings - Fork 7
/
borehole_ui.py
476 lines (411 loc) · 18.7 KB
/
borehole_ui.py
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
# -*- coding: utf-8 -*-
"""
Copyright 2017 Bernard Giroux, Elie Dumas-Lefebvre, Jerome Simon
email: [email protected]
This file is part of BhTomoPy.
BhTomoPy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import os
import re
import sys
from PyQt5 import QtCore, QtWidgets
import numpy as np
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg
from matplotlib.figure import Figure
from mpl_toolkits.mplot3d import axes3d # @UnusedImport
import vtk
from borehole import Borehole
from utils_ui import MyQLabel
from database import BhTomoDb
class BoreholeUI(QtWidgets.QWidget):
# ------- Signals ------- #
bhlogSignal = QtCore.pyqtSignal(str)
bhUpdateSignal = QtCore.pyqtSignal(
list) # this signal sends the information to update the Tx and Rx comboboxes in MogUI
bhInfoSignal = QtCore.pyqtSignal(
int) # this signal sends the information to update the number of boreholes in infoUI
def __init__(self, db, parent=None):
super(BoreholeUI, self).__init__(parent)
self.db = db
self.setWindowTitle("BhTomoPy/Borehole")
self.init_UI()
self.update_list_widget()
self.update_list_edits()
def import_borehole(self):
"""
This method opens a QFileDialog, takes the name that the user has selected and
updates the borehole's informations
"""
filename = QtWidgets.QFileDialog.getOpenFileName(self, 'Import Borehole')[0]
try:
if filename:
self.load_borehole(filename)
except:
self.bhlogSignal.emit('Error: Borehole file must have *.xyz extension')
def export_boreholes(self):
filename, _ = QtWidgets.QFileDialog.getSaveFileName(self, 'Export boreholes', '', 'VTK file (*.vtp)', '')
if filename != '':
pts = vtk.vtkPoints()
for bh in self.db.boreholes:
for n in range(bh.fdata.shape[0]):
pts.InsertNextPoint(bh.fdata[n, 0], bh.fdata[n, 1], bh.fdata[n, 2])
polydata = vtk.vtkPolyData()
polydata.SetPoints(pts)
cellarray = vtk.vtkCellArray()
npts = 0
for bh in self.db.boreholes:
line = vtk.vtkPolyLine()
line.GetPointIds().SetNumberOfIds(bh.fdata.shape[0])
for n in range(bh.fdata.shape[0]):
line.GetPointIds().SetId(n, npts)
npts += 1
cellarray.InsertNextCell(line)
polydata.SetLines(cellarray)
writer = vtk.vtkXMLPolyDataWriter()
writer.SetFileName(filename)
writer.SetInputData(polydata)
writer.SetDataModeToBinary()
writer.Update()
def load_borehole(self, filename):
rname = os.path.basename(filename)
rname = rname.strip('.xyz')
bh = Borehole(str(rname))
self.db.boreholes.append(bh)
bh.fdata = np.loadtxt(filename)
bh.X = bh.fdata[0, 0]
bh.Y = bh.fdata[0, 1]
bh.Z = bh.fdata[0, 2]
bh.Xmax = bh.fdata[-1, 0]
bh.Ymax = bh.fdata[-1, 1]
bh.Zmax = bh.fdata[-1, 2]
self.update_list_widget()
self.bh_list.setCurrentRow(len(self.db.boreholes) - 1)
self.update_list_edits()
self.bhlogSignal.emit("{}.xyz has been loaded successfully".format(rname))
def add_borehole(self):
"""
This method will create an instance of Borehole and initialize it, while showing the value of all its
attributes in the coordinates edits
"""
name, ok = QtWidgets.QInputDialog.getText(self, "Borehole creation", "Borehole name")
if ok:
bh = Borehole(str(name))
try:
self.db.boreholes.append(bh)
except ValueError:
QtWidgets.QMessageBox.warning(self, 'Error', 'Borehole name already used',
buttons=QtWidgets.QMessageBox.Ok)
return
self.update_list_widget()
self.bh_list.setCurrentRow(len(self.db.boreholes) - 1)
self.update_list_edits()
self.bhlogSignal.emit("{} borehole has been added successfully".format(name))
def update_list_widget(self):
"""
Updates the information in the bh_list, then emits the instances contained in boreholes and the
length of bh_list to DatabaseUI
"""
self.bh_list.clear()
for bh in self.db.boreholes:
self.bh_list.addItem(bh.name)
self.bhInfoSignal.emit(len(self.bh_list))
self.bhUpdateSignal.emit(self.db.boreholes) # TODO rework
def update_list_edits(self):
"""
Updates the coordinates edits information with the attributes of the Borehole class instance
"""
bh = self.current_borehole()
if bh:
self.X_edit.setText(str(bh.X))
self.Y_edit.setText(str(bh.Y))
self.Z_edit.setText(str(bh.Z))
self.Xmax_edit.setText(str(bh.Xmax))
self.Ymax_edit.setText(str(bh.Ymax))
self.Zmax_edit.setText(str(bh.Zmax))
self.Z_surf_edit.setText(str(bh.Z_surf))
if bh.Z_water is None:
self.Z_water_edit.setText('')
else:
self.Z_water_edit.setText(str(bh.Z_water))
else:
self.X_edit.setText('0.0')
self.Y_edit.setText('0.0')
self.Z_edit.setText('0.0')
self.Xmax_edit.setText('0.0')
self.Ymax_edit.setText('0.0')
self.Zmax_edit.setText('0.0')
self.Z_surf_edit.setText('0.0')
self.Z_water_edit.setText('')
def current_borehole(self):
row = self.bh_list.currentRow()
if row != -1:
return self.db.boreholes[row]
def delete_borehole(self):
"""
Deletes a borehole instance from boreholes
"""
item = self.current_borehole()
if item:
# check if borehole is used by mogs
for mog in self.db.mogs:
if mog.Tx is item or mog.Rx is item:
QtWidgets.QMessageBox.warning(self, 'Warning',
'Borehole {0:s} used by MOG {1:s}'.format(item.name, mog.name),
buttons=QtWidgets.QMessageBox.Ok)
break
else:
self.db.boreholes.remove(item)
self.bhlogSignal.emit("{} has been deleted".format(item.name))
if len(self.db.boreholes) > 0:
self.bh_list.setCurrentRow(0)
else:
self.bh_list.setCurrentRow(-1)
self.update_list_widget()
self.update_list_edits()
def update_borehole_data(self):
"""
Updates the borehole's attributes from the coordinates edits
"""
exp = re.compile("^-?[0-9]+([\.,][0-9]+)?$") # float number, with or without decimals, and allowing negatives
for item in (
self.X_edit, self.Y_edit, self.Z_edit, self.Xmax_edit, self.Ymax_edit, self.Zmax_edit, self.Z_surf_edit,
self.Z_water_edit):
if item.text() != '' and not exp.match(item.text()):
self.bhlogSignal.emit("Error: Some edited information is incorrect.")
item.setFocus()
QtWidgets.QMessageBox.warning(self, 'Warning',
"Some edited information is incorrect. Edit fields cannot contain letters or special characters.",
buttons=QtWidgets.QMessageBox.Ok)
self.updateHandler = False
return
item.setText(item.text().replace(',', '.'))
self.updateHandler = False
item = self.current_borehole()
if item:
bh = item
bh.X = float(self.X_edit.text())
bh.Y = float(self.Y_edit.text())
bh.Z = float(self.Z_edit.text())
bh.Xmax = float(self.Xmax_edit.text())
bh.Ymax = float(self.Ymax_edit.text())
bh.Zmax = float(self.Zmax_edit.text())
bh.Z_surf = float(self.Z_surf_edit.text())
if self.Z_water_edit.text() == '':
bh.Z_water = None
else:
bh.Z_water = float(self.Z_water_edit.text())
bh.fdata[0, 0] = bh.X
bh.fdata[0, 1] = bh.Y
bh.fdata[0, 2] = bh.Z
bh.fdata[-1, 0] = bh.Xmax
bh.fdata[-1, 1] = bh.Ymax
bh.fdata[-1, 2] = bh.Zmax
bh.modified = True
def plot(self):
"""
Plots all the Borehole instances in boreholes
"""
if len(self.db.boreholes) != 0:
self.bholeFig = BoreholeFig()
self.bholeFig.plot_bholes(self.db.boreholes)
for bh in self.db.boreholes:
self.bhlogSignal.emit("{}'s trajectory has been plotted".format(bh.name))
self.bholeFig.show()
def attenuation_constraints(self):
"""
Knowing the values of attenuation depending on elevation, we can define the attenuation on the borehole's trajectory
with the project method and then associate an exactitude value (covariance) to each of them if it is given in the *.con file.
We then associate the Cont instance to the borehole's acont attribute
"""
item = self.current_borehole()
if item:
acont = Cont()
filename = QtWidgets.QFileDialog.getOpenFileName(self, 'Open File')[0]
rname = os.path.basename(filename)
rname = rname[:-4]
if ".con" in filename:
bh = item
cont = np.loadtxt(filename)
acont.x, acont.y, acont.z, _ = bh.project(bh.fdata, cont[:, 0])
acont.x = acont.x.flatten()
acont.y = acont.y.flatten()
acont.z = acont.z.flatten()
acont.valeur = cont[:, 1]
if np.size(cont, axis=1) == 3:
acont.variance = cont[:, 2]
else:
acont.variance = np.zeros(len(cont[:, 1]))
bh.acont = acont
self.bhlogSignal.emit(
"{} Attenuation Constraints have been applied to Borehole {} ".format(rname, bh.name))
bh.modified = True
else:
self.bhlogSignal.emit("Error: the file's extension must be *.con")
def slowness_constraints(self):
"""
Practically the same method as attenuation_constraints but reversed
"""
bh = self.current_borehole()
scont = Cont()
if bh:
filename = QtWidgets.QFileDialog.getOpenFileName(self, 'Open File')[0]
rname = os.path.basename(filename)
rname = rname[:-4]
if ".con" in filename:
cont = np.loadtxt(filename)
scont.x, scont.y, scont.z, _ = bh.project(bh.fdata, cont[:, 0])
scont.x = scont.x.flatten()
scont.y = scont.y.flatten()
scont.z = scont.z.flatten()
scont.valeur = 1 / cont[:, 1]
if np.size(cont, axis=1) == 3:
# inversion of a random variable http://math.stackexchange.com/questions/269216/inverse-of-random-variable
scont.variance = cont[:, 2] / (cont[:, 1] ** 4)
else:
scont.variance = np.zeros(len(cont[:, 1]))
bh.scont = scont
self.bhlogSignal.emit(
"{} Slowness Constraints have been applied to Borehole {} ".format(rname, bh.name))
bh.modified = True
else:
self.bhlogSignal.emit("Error: the file's extension must be *.con")
def init_UI(self):
# ------- Widget Creation ------- #
# --- Buttons Set--- #
btn_Add = QtWidgets.QPushButton("Add")
btn_Remove = QtWidgets.QPushButton("Remove")
btn_Import = QtWidgets.QPushButton("Import")
btn_Plot = QtWidgets.QPushButton("Plot")
btn_Constraints_veloc = QtWidgets.QPushButton("Constraints Veloc.")
btn_Constraints_atten = QtWidgets.QPushButton("Constraints Atten.")
# --- list --- #
self.bh_list = QtWidgets.QListWidget()
# --- Labels --- #
Coord_label = MyQLabel('Coordinates', ha='center')
Collar_label = MyQLabel('Collar', ha='center')
Bottom_label = MyQLabel('Bottom', ha='center')
X_label = MyQLabel('X:', ha='right')
Y_label = MyQLabel('Y:', ha='right')
Elev_label = MyQLabel('Elevation:', ha='right')
Elev_surf_label = QtWidgets.QLabel("Elevation at surface:")
Elev_water_label = MyQLabel('Water elevation:', ha='right')
# --- Edits --- #
self.X_edit = QtWidgets.QLineEdit()
self.Y_edit = QtWidgets.QLineEdit()
self.Z_edit = QtWidgets.QLineEdit()
self.Xmax_edit = QtWidgets.QLineEdit()
self.Ymax_edit = QtWidgets.QLineEdit()
self.Zmax_edit = QtWidgets.QLineEdit()
self.Z_surf_edit = QtWidgets.QLineEdit()
self.Z_water_edit = QtWidgets.QLineEdit()
# --- List Actions --- #
self.bh_list.itemSelectionChanged.connect(self.update_list_edits)
# --- Edits Actions --- #
self.X_edit.editingFinished.connect(self.update_borehole_data)
self.Y_edit.editingFinished.connect(self.update_borehole_data)
self.Z_edit.editingFinished.connect(self.update_borehole_data)
self.Xmax_edit.editingFinished.connect(self.update_borehole_data)
self.Ymax_edit.editingFinished.connect(self.update_borehole_data)
self.Zmax_edit.editingFinished.connect(self.update_borehole_data)
self.Z_surf_edit.editingFinished.connect(self.update_borehole_data)
self.Z_water_edit.editingFinished.connect(self.update_borehole_data)
# --- Buttons Actions --- #
btn_Add.clicked.connect(self.add_borehole)
btn_Remove.clicked.connect(self.delete_borehole)
btn_Import.clicked.connect(self.import_borehole)
btn_Plot.clicked.connect(self.plot)
btn_Constraints_atten.clicked.connect(self.attenuation_constraints)
btn_Constraints_veloc.clicked.connect(self.slowness_constraints)
# --- SubWidgets --- #
# --- Edits and Labels SubWidgets --- #
sub_E_and_L_widget = QtWidgets.QWidget()
sub_E_and_L_grid = QtWidgets.QGridLayout()
sub_E_and_L_grid.addWidget(Coord_label, 0, 0, 1, 2)
sub_E_and_L_grid.addWidget(Collar_label, 0, 2, 1, 2)
sub_E_and_L_grid.addWidget(Bottom_label, 0, 4, 1, 2)
sub_E_and_L_grid.addWidget(X_label, 1, 0, 1, 2)
sub_E_and_L_grid.addWidget(self.X_edit, 1, 2, 1, 2)
sub_E_and_L_grid.addWidget(self.Xmax_edit, 1, 4, 1, 2)
sub_E_and_L_grid.addWidget(Y_label, 2, 0, 1, 2)
sub_E_and_L_grid.addWidget(self.Y_edit, 2, 2, 1, 2)
sub_E_and_L_grid.addWidget(self.Ymax_edit, 2, 4, 1, 2)
sub_E_and_L_grid.addWidget(Elev_label, 3, 0, 1, 2)
sub_E_and_L_grid.addWidget(self.Z_edit, 3, 2, 1, 2)
sub_E_and_L_grid.addWidget(self.Zmax_edit, 3, 4, 1, 2)
sub_E_and_L_grid.addWidget(Elev_surf_label, 4, 1, 1, 2)
sub_E_and_L_grid.addWidget(self.Z_surf_edit, 4, 3, 1, 2)
sub_E_and_L_grid.addWidget(Elev_water_label, 5, 1, 1, 2)
sub_E_and_L_grid.addWidget(self.Z_water_edit, 5, 3, 1, 2)
sub_E_and_L_widget.setLayout(sub_E_and_L_grid)
# --- Upper Buttons --- #
sub_upper_buttons_widget = QtWidgets.QWidget()
sub_upper_buttons_Grid = QtWidgets.QGridLayout()
sub_upper_buttons_Grid.addWidget(btn_Add, 0, 0)
sub_upper_buttons_Grid.addWidget(btn_Remove, 0, 1)
sub_upper_buttons_Grid.addWidget(btn_Import, 0, 2)
sub_upper_buttons_Grid.addWidget(btn_Plot, 0, 4)
sub_upper_buttons_Grid.setContentsMargins(0, 0, 0, 0)
sub_upper_buttons_widget.setLayout(sub_upper_buttons_Grid)
# --- Lower Buttons --- #
sub_lower_buttons_widget = QtWidgets.QWidget()
sub_lower_buttons_Grid = QtWidgets.QGridLayout()
sub_lower_buttons_Grid.addWidget(btn_Constraints_veloc, 0, 0)
sub_lower_buttons_Grid.addWidget(btn_Constraints_atten, 0, 1)
sub_lower_buttons_Grid.setContentsMargins(0, 0, 0, 0)
sub_lower_buttons_widget.setLayout(sub_lower_buttons_Grid)
# ------- Grid Disposition ------- #
master_grid = QtWidgets.QGridLayout()
master_grid.addWidget(sub_upper_buttons_widget, 0, 0)
master_grid.addWidget(self.bh_list, 1, 0)
master_grid.addWidget(sub_E_and_L_widget, 2, 0)
master_grid.addWidget(sub_lower_buttons_widget, 4, 0)
master_grid.setContentsMargins(0, 0, 0, 0)
# ------- set Layout ------- #
self.setLayout(master_grid)
class BoreholeFig(FigureCanvasQTAgg):
def __init__(self):
"""
Here we create a 3D figure in which we will plot the Borehole instances' trajectory (i.e. their respective fdata)
"""
fig_width, fig_height = 6, 8
fig = Figure(figsize=(fig_width, fig_height), facecolor='white')
super(BoreholeFig, self).__init__(fig)
self.init_figure()
def init_figure(self):
ax = self.figure.add_axes([0.05, 0.05, 0.9, 0.9], projection='3d')
ax.set_axisbelow(True)
def plot_bholes(self, bhole_list):
ax = self.figure.axes[0]
ax.cla()
for bhole in bhole_list:
ax.plot(bhole.fdata[:, 0], bhole.fdata[:, 1], bhole.fdata[:, 2], label=bhole.name)
l = ax.legend(ncol=1, bbox_to_anchor=(0, 1), loc='upper left', borderpad=0)
l.draw_frame(False)
self.draw()
class Cont(object):
"""
This class represents either the slowness constraints(i.e. bh.scont) or the attenuation constraints(i.e. bh.acont).
We created a class for Cont because it has its own attributes.
"""
def __init__(self):
self.x = np.array([])
self.y = np.array([])
self.z = np.array([])
self.valeur = np.array([])
self.variance = np.array([])
if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)
db = BhTomoDb('/tmp/test_db.h5')
db.load()
bh_ui = BoreholeUI(db)
bh_ui.show()
sys.exit(app.exec_())