- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplot.py
More file actions
Latest commit
executable file
·314 lines (289 loc) · 9.36 KB
/
Copy pathplot.py
File metadata and controls
executable file
·314 lines (289 loc) · 9.36 KB
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
#!/usr/bin/env python3
# Extremely simple signal plotting tool
importos
importsys
importbinascii
importrandom
fromscipy.signalimportbutter,lfilter,freqz
importscipy.signal
fromnumpyimport*
importtime
importgetopt
importmatplotlibasmpl
importsparkgap.filemanager
TRIGGERS=0
lastTime=0.0
lastX=0
defonclick(event):
globallastTime, lastX, OFFSET
t=time.time()
ift-lastTime<0.200:
print("debounce - nope")
return
elifevent.xdataisNone:
print("skip - event.xdata (click on graph) is none")
return
else:
lastTime=t
iflastX==0:
lastX=int(event.xdata)
lastX+=OFFSET
print("MARK: %d"%lastX)
else:
localX=int(event.xdata)
fromX=min(lastX,localX)
toX=max(lastX,localX)
dist=toX-fromX
fromX+=OFFSET
toX+=OFFSET
print("FROM %d TO %d DIST %d"% (fromX,toX,dist))
lastX=localX
defbutter_bandpass(lowcut,highcut,fs,order=5):
nyq=0.5*fs
low=lowcut/nyq
high=highcut/nyq
b,a=butter(order, [low, high], btype='band')
returnb,a
defbutter_bandpass_filter(data,lowcut,highcut,fs,order=5):
b,a=butter_bandpass(lowcut,highcut,fs,order=order)
y=lfilter(b,a,data)
returny
defbutter_lowpass(cutoff, fs, order=5):
nyq=0.5*fs
normal_cutoff=cutoff/nyq
b, a=butter(order, normal_cutoff, btype='low', analog=False)
returnb, a
defbutter_lowpass_filter(data, cutoff, fs, order=5):
b, a=butter_lowpass(cutoff, fs, order=order)
y=lfilter(b, a, data)
returny
defgetTraceConfig(r_str):
r= []
if","inr_str:
tokens=r_str.split(",")
print(tokens)
else:
tokens= [r_str]
fortintokens:
if"-"int:
(t1,t2) =t.split("-")
r+=list(range(int(t1),int(t2)))
else:
r+= [int(t)]
returnr
OFFSET=0
COUNT=0
RULER= []
# NUM_TRACES = 1
TRACES= []
GAIN_FACTOR=31622.0
ADDITIONAL_FILES= []
BANDPASS_LOWCUT=1000000
BANDPASS_HIGHCUT=5000000
BANDPASS_SR=249999999
BANDPASS_ORDER=1
BANDPASS_EN=False
LOWPASS_CUTOFF=10000
LOWPASS_SR=40000000
LOWPASS_ORDER=5
LOWPASS_EN=False
FFT_BASEFREQ=40000000
FFT_EN=False
SPECGRAM_EN=False
SPECGRAM_SR=0
PLOT_SHOWN=False# dirty hack
TITLE="Single Trace Plot"
XAXIS="Sample Count"
YAXIS="Power"
defconfigure_fft(arg):
globalFFT_BASEFREQ,FFT_EN,TITLE,XAXIS
FFT_BASEFREQ=float(arg)
TITLE="FFT Plot (%d Hz Sample Rate)"%FFT_BASEFREQ
XAXIS="Frequency"
FFT_EN=True
defconfigure_specgram(arg):
globalSPECGRAM_EN, TITLE, XAXIS, YAXIS, SPECGRAM_SR
TITLE="Spectogram View"
print("SPECGRAM_EN = True")
SPECGRAM_EN=True
SPECGRAM_SR=float(arg)
defconfigure_lowpass(in_str):
globalLOWPASS_CUTOFF, LOWPASS_SR, LOWPASS_ORDER, LOWPASS_EN, TITLE
try:
(cutoff,samplerate,order) =in_str.split(",")
except:
print("syntax: -l 10000,40000000,5 (cutoff, samplerate, order)")
sys.exit(0)
LOWPASS_CUTOFF=float(cutoff)
LOWPASS_SR=float(samplerate)
LOWPASS_ORDER=int(order)
LOWPASS_EN=True
TITLE="Low Pass (%d Hz SR, %d Hz Cutoff)"% (LOWPASS_SR,LOWPASS_CUTOFF)
defconfigure_bandpass(in_str):
globalBANDPASS_LOWCUT, BANDPASS_HIGHCUT,BANDPASS_ORDER, BANDPASS_SR, BANDPASS_EN, TITLE
try:
(lowcut,highcut,samplerate,order) =in_str.split(",")
except:
print("syntax -b (lowcut,highcut,sr,order)")
sys.exit(0)
BANDPASS_LOWCUT=float(lowcut)
BANDPASS_HIGHCUT=float(highcut)
BANDPASS_SR=float(samplerate)
BANDPASS_ORDER=int(order)
BANDPASS_EN=True
TITLE="Band pass (%d Hz to %d Hz, %d SR)"% (BANDPASS_LOWCUT,BANDPASS_HIGHCUT,BANDPASS_SR)
defusage():
print(" plot.py : part of the fuckshitfuck toolkit")
print("----------------------------------------------")
print(" -h : prints this message")
print(" -o : offset to start plotting samples from")
print(" -n : number of samples from offset to plot")
print(" -c : select traces")
print(" -f : input npz file (can be multiple)")
print(" -r : print vertical ruler at point (NOT IMPLEMENTED)")
print(" -l [cutoff,samplerate,order] : lowpass mode - units in hz")
print(" -b [lowcut,highcut,samplerate,order] : bandpass mode - units in hz")
print(" -F [samplerate] : plot fft, base freq in hz")
print(" -s [samplerate] : plot spectrogram")
print(" -w [filename] : write output to file. suppresses window.")
mpl.rcParams['agg.path.chunksize'] =10000
CONFIG_WRITEFILE=None
SPECIAL_TEST=False
if__name__=="__main__":
opts, remainder=getopt.getopt(sys.argv[1:],"tb:s:hl:n:o:c:r:f:F:w:",["spectrogram=","help","lowpass=","samples=","offset=","count=","ruler=","file=","fft=","highlight=","bandpass=","test"])
foropt,arginopts:
ifoptin ("-h","--help"):
usage()
sys.exit(0)
elifoptin ("-s","--spectrogram"):
configure_specgram(arg)
elifoptin ("-o","--offset"):
OFFSET=int(float(arg))
elifoptin ("-n","--samples"):
COUNT=int(float(arg))
elifoptin ("-c","--count"):
TRACES=getTraceConfig(arg)
elifoptin ("-f","--file"):
ADDITIONAL_FILES.append(arg)
elifoptin ("-l","--lowpass"):
configure_lowpass(arg)
elifoptin ("-b","--bandpass"):
configure_bandpass(arg)
elifoptin ("-t","--test"):
print("SPECIAL TEST MODE")
SPECIAL_TEST=True
elifoptin ("-F","--fft"):
configure_fft(arg)
elifoptin ("-w"):
CONFIG_WRITEFILE=arg
elifoptin ("-r","--ruler"):
RULER.append(int(float(arg)))
else:
print("Unknown argument: %s"%opt)
sys.exit(0)
ifCONFIG_WRITEFILEisnotNone:
mpl.use("Agg")
ifLOWPASS_ENandBANDPASS_EN:
print("You can't have both lowpass and bandpass filters (yet!)")
sys.exit(0)
importmatplotlib.pyplotasplt
if [FFT_EN, LOWPASS_EN, SPECGRAM_EN, BANDPASS_EN].count(True) >1:
print("You can only select one of -F (FFT), -l (LOWPASS) or -b (BANDPASS)")
sys.exit(0)
ifSPECGRAM_EN==False:
fig, ax1=plt.subplots()
iflen(ADDITIONAL_FILES) !=1:
print("TraceManager no longer supports multiple files by design. Try something else")
sys.exit(0)
forfinADDITIONAL_FILES:
ifnotos.path.isfile(f):
print("Fatal: could not open %s"%f)
sys.exit(0)
tm=sparkgap.filemanager.TraceManager(f)
iflen(TRACES) ==0:
print("You must specify at least one trace with -c")
sys.exit(0)
iflen(TRACES) !=1:
TITLE="TRACE PLOT"
if ((OFFSET!=0) and (COUNT==0)):
print("Fix: Assume you want to start at %d, finish at trace end"%OFFSET)
d=tm.getSingleTrace(0)
COUNT=len(d) -OFFSET
foriinTRACES:
ifOFFSET==0andCOUNT==0:
d=tm.getSingleTrace(i)
di=tm.getSingleData(i)
do=tm.getSingleDataOut(i)
print(di)
print(do)
else:
d=tm.getSingleTrace(i)[OFFSET:OFFSET+COUNT]
# print("Continuing...")
ifLOWPASS_EN: # this code is disgusting but fuck you
print("LOWPASS")
d=tm.getSingleTrace(i)
# d = df['traces'][i]
ifOFFSET==0andCOUNT==0:
ifSPECIAL_TEST:
lowpassed_d=butter_lowpass_filter(d,LOWPASS_CUTOFF,LOWPASS_SR,LOWPASS_ORDER)
std_dev=std(lowpassed_d)
avg_dev=average(lowpassed_d)
# peaks,_ = scipy.signal.find_peaks(lowpassed_d,prominence=[0,0.5],rel_height=0.9)
plt.plot(lowpassed_d)
# plt.plot(peaks,lowpassed_d[peaks],"x")
else:
plt.plot(butter_lowpass_filter(d,LOWPASS_CUTOFF,LOWPASS_SR,LOWPASS_ORDER))
else:
plt.plot(butter_lowpass_filter(d,LOWPASS_CUTOFF,LOWPASS_SR,LOWPASS_ORDER)[OFFSET:OFFSET+COUNT])
elifBANDPASS_EN:
print("BANDPASS")
d=tm.getSingleTrace(i)
# d = df['traces'][i]
ifOFFSET==0andCOUNT==0:
plt.plot(butter_bandpass_filter(d,BANDPASS_LOWCUT,BANDPASS_HIGHCUT,BANDPASS_SR,BANDPASS_ORDER))
else:
plt.plot(butter_bandpass_filter(d,BANDPASS_LOWCUT,BANDPASS_HIGHCUT,BANDPASS_SR,BANDPASS_ORDER)[OFFSET:OFFSET+COUNT])
elifFFT_EN:
print("FFT")
n=len(d)
k=arange(n)
T=n/FFT_BASEFREQ
frq=k/T
frq=frq[list(range(n//2))]
Y=fft.fft(d)/n
Y=Y[list(range(n//2))]
plt.plot(frq,abs(Y),'r')
elifSPECGRAM_EN:
print("Specgram enable")
fig, (ax1, ax2) =plt.subplots(nrows=2)
ax1.set_title("Power Trace")
ax1.set_ylabel("Power")
ax1.set_xlabel("Sample Count")
ax1.plot(d)
ax2.set_title("Spectogram")
ax2.set_ylabel("Frequency Component")
ax2.set_xlabel("Time")
ax2.specgram(d*100,NFFT=1024,Fs=SPECGRAM_SR,noverlap=900)
ax1.margins(0)
fig.canvas.manager.set_window_title("plot.py")
ifCONFIG_WRITEFILEisnotNone:
print("Saving to %s..."%CONFIG_WRITEFILE)
plt.savefig(CONFIG_WRITEFILE)
else:
plt.show()
PLOT_SHOWN=True
else:
plt.plot(d)
ifPLOT_SHOWNisFalse:
plt.title(TITLE)
plt.ylabel(YAXIS)
plt.xlabel(XAXIS)
plt.grid()
fig.canvas.manager.set_window_title("plot.py")
ifCONFIG_WRITEFILEisnotNone:
print("Saving to %s..."%CONFIG_WRITEFILE)
plt.savefig(CONFIG_WRITEFILE)
else:
print("Connecting Event - Focus the window to activate")
fig.canvas.mpl_connect("button_press_event",onclick)
plt.show()