-
Notifications
You must be signed in to change notification settings - Fork 2
/
pmmh
executable file
·290 lines (191 loc) · 7.09 KB
/
pmmh
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
#!/usr/bin/env python3
import matplotlib.pyplot as plt
import numpy as np
import pymei
import argparse
###############################################################################
# Parse the command line arguments
###############################################################################
parser = argparse.ArgumentParser(description="Plots midpoints of a data as points in space")
parser.add_argument('data', metavar='DATA', type=str, nargs=1, help='Path to a seismic file')
parser.add_argument('-az', dest='ang', metavar='ANGLE', type=float, \
default=0, help='Rotate the coordinate system clock-wise')
parser.add_argument('-p', dest='pick_points', action='store_true', \
default=False, help='Enable point picking')
parser.add_argument('-w', dest='show_wiggle', action='store_true', \
default=False, help='Display a wiggle plot for the selected trace (implies -p)')
args = parser.parse_args()
if args.show_wiggle:
args.pick_points = True
###############################################################################
# Clock-wise rotation matrix
###############################################################################
ang = -args.ang * np.pi / 180
rot = np.array([
[ np.cos(ang), np.sin(ang)],
[-np.sin(ang), np.cos(ang)]])
###############################################################################
# Global variables
###############################################################################
fig = None
point_data = []
selected_point = -1
point_plot = None
point_ax = None
wiggle_plot = None
wiggle_ax = None
###############################################################################
# Print selected point when clicked
###############################################################################
def print_point():
point = point_data[selected_point]
x, y, mx, my, hx, hy = point[0:6]
cdp, fof, i, j = point[6:10]
print("I=%d, CDP=%d, MX=%f, MY=%f, HX=%f, HY=%f, TID=%d, TOF=%d" %
(j, cdp, mx, my, hx, hy, i, fof))
###############################################################################
# Print selected sample when clicked
###############################################################################
def print_sample(py):
tr = data.readTrace(int(point_data[selected_point][7]))
s = int(py // tr.dt)
if s < tr.ns:
print("TIME=%f SAMPLE=%d AMPLITUDE=%f" % (py,s,tr.data[s]))
###############################################################################
# Set the red marker from the selected point
###############################################################################
def update_point():
global point_plot
point = point_data[selected_point]
x, y = point[0:2]
point_plot, = point_ax.plot([x], [y], marker='o', c='red')
###############################################################################
# Update the wiggle plot from the selected point
###############################################################################
def update_wiggle():
global wiggle_plot
if not args.show_wiggle:
return
tr = data.readTrace(int(point_data[selected_point][7]))
y = tr.dt * np.arange(tr.ns)
x = tr.data
wiggle_plot, = wiggle_ax.plot(x, y, c='black')
wiggle_ax.set_ylim([0, tr.dt * tr.ns])
wiggle_ax.invert_yaxis()
###############################################################################
# Update the plotting canvas
###############################################################################
def update_all():
global selected_point
if selected_point != None:
if selected_point < 0:
selected_point = len(point_data) - 1
elif selected_point >= len(point_data):
selected_point = 0
print_point()
update_point()
update_wiggle()
fig.canvas.draw()
if selected_point == None:
selected_point = -1
###############################################################################
# Find the nearest point to a position
###############################################################################
def find_nearest_point(px, py):
dmin = -1
jmin = -1
for point_idx, point in enumerate(point_data):
x, y = point[0:2]
d = (x-px)**2 + (y-py)**2
if dmin < 0 or d < dmin:
dmin = d
jmin = point_idx
return jmin
###############################################################################
# Key press event
###############################################################################
def key_press(event):
global point_data
global selected_point
global point_plot
global fig
global wiggle_plot
if len(point_data) == 0:
return
if point_plot != None:
point_plot.remove()
point_plot = None
if wiggle_plot != None:
wiggle_plot.remove()
wiggle_plot = None
if selected_point < 0:
selected_point = 0
else:
if event.key == 'right':
selected_point += 1
elif event.key == 'left':
selected_point -= 1
elif event.key == 'up':
selected_point += len(point_data) // 20
elif event.key == 'down':
selected_point -= len(point_data) // 20
elif event.key == 'escape':
selected_point = None
else:
return
update_all()
###############################################################################
# Mouse press event
###############################################################################
def mouse_press(event):
global point_data
global selected_point
global point_plot
global fig
global wiggle_plot
px = event.xdata
py = event.ydata
if px == None or py == None:
return
if event.inaxes == None:
return
if event.inaxes == wiggle_ax and wiggle_ax != None:
print_sample(py)
elif event.inaxes == point_ax:
jmin = find_nearest_point(px, py)
if jmin < 0:
return
if point_plot != None:
point_plot.remove()
point_plot = None
if wiggle_plot != None:
wiggle_plot.remove()
wiggle_plot = None
selected_point = jmin
update_all()
###############################################################################
# Initialize program
###############################################################################
fig = plt.figure()
if args.pick_points:
fig.canvas.mpl_connect('key_press_event', key_press)
fig.canvas.mpl_connect('button_press_event', mouse_press)
if args.show_wiggle:
point_ax = plt.subplot2grid((1,3), (0,1), colspan=2)
wiggle_ax = plt.subplot2grid((1,3), (0,0), colspan=1)
wiggle_ax.invert_yaxis()
else:
point_ax = plt.subplot()
i = 0
path = args.data[0]
data = pymei.load(path)
I = np.array([(tr.mx, tr.my, tr.hx, tr.hy, tr.cdp, tr.fof, j) for j, tr in enumerate(data)])
cdp = I[:,4]
M = rot.dot((I[:, 0:2]).T)
H = rot.dot((I[:, 2:4]).T)
X = M[1,:]
Y = H[1,:]
point_data = point_data + [j + (i, ) for j in zip(X, Y, *[x for x in I.T])]
cax = point_ax.scatter(X, Y, marker='x', c=cdp)
plt.colorbar(cax)
plt.show()