Imported Upstream version 3.2.2
[debian/gnuradio] / gr-utils / src / python / gr_plot_psd.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2007,2008 Free Software Foundation, Inc.
4
5 # This file is part of GNU Radio
6
7 # GNU Radio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # GNU Radio is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Radio; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street,
20 # Boston, MA 02110-1301, USA.
21
22
23 try:
24     import matplotlib
25     matplotlib.use('TkAgg')
26     matplotlib.interactive(True)
27 except ImportError:
28     print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)"
29     raise SystemExit, 1
30
31 try:
32     import scipy
33     from scipy import fftpack
34 except ImportError:
35     print "Please install SciPy to run this script (http://www.scipy.org/)"
36     raise SystemExit, 1
37
38 try:
39     from pylab import *
40 except ImportError:
41     print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)"
42     raise SystemExit, 1
43
44 from optparse import OptionParser
45 from scipy import log10
46
47 class gr_plot_psd:
48     def __init__(self, datatype, filename, options):
49         self.hfile = open(filename, "r")
50         self.block_length = options.block
51         self.start = options.start
52         self.sample_rate = options.sample_rate
53         self.psdfftsize = options.psd_size
54         self.specfftsize = options.spec_size
55
56         self.dospec = options.enable_spec  # if we want to plot the spectrogram
57
58         self.datatype = getattr(scipy, datatype) #scipy.complex64
59         self.sizeof_data = self.datatype().nbytes    # number of bytes per sample in file
60
61         self.axis_font_size = 16
62         self.label_font_size = 18
63         self.title_font_size = 20
64         self.text_size = 22
65
66         # Setup PLOT
67         self.fig = figure(1, figsize=(16, 12), facecolor='w')
68         rcParams['xtick.labelsize'] = self.axis_font_size
69         rcParams['ytick.labelsize'] = self.axis_font_size
70         
71         self.text_file     = figtext(0.10, 0.95, ("File: %s" % filename), weight="heavy", size=self.text_size)
72         self.text_file_pos = figtext(0.10, 0.92, "File Position: ", weight="heavy", size=self.text_size)
73         self.text_block    = figtext(0.35, 0.92, ("Block Size: %d" % self.block_length),
74                                      weight="heavy", size=self.text_size)
75         self.text_sr       = figtext(0.60, 0.915, ("Sample Rate: %.2f" % self.sample_rate),
76                                      weight="heavy", size=self.text_size)
77         self.make_plots()
78
79         self.button_left_axes = self.fig.add_axes([0.45, 0.01, 0.05, 0.05], frameon=True)
80         self.button_left = Button(self.button_left_axes, "<")
81         self.button_left_callback = self.button_left.on_clicked(self.button_left_click)
82
83         self.button_right_axes = self.fig.add_axes([0.50, 0.01, 0.05, 0.05], frameon=True)
84         self.button_right = Button(self.button_right_axes, ">")
85         self.button_right_callback = self.button_right.on_clicked(self.button_right_click)
86
87         self.xlim = self.sp_iq.get_xlim()
88
89         self.manager = get_current_fig_manager()
90         connect('draw_event', self.zoom)
91         connect('key_press_event', self.click)
92         show()
93         
94     def get_data(self):
95         self.position = self.hfile.tell()/self.sizeof_data
96         self.text_file_pos.set_text("File Position: %d" % self.position)
97         self.iq = scipy.fromfile(self.hfile, dtype=self.datatype, count=self.block_length)
98         #print "Read in %d items" % len(self.iq)
99         if(len(self.iq) == 0):
100             print "End of File"
101         else:
102             tstep = 1.0 / self.sample_rate
103             self.time = [tstep*(self.position + i) for i in xrange(len(self.iq))]
104
105             self.iq_psd, self.freq = self.dopsd(self.iq)
106             
107     def dopsd(self, iq):
108         ''' Need to do this here and plot later so we can do the fftshift '''
109         overlap = self.psdfftsize/4
110         winfunc = scipy.blackman
111         psd,freq = self.sp_psd.psd(iq, self.psdfftsize, self.sample_rate,
112                                    window = lambda d: d*winfunc(self.psdfftsize),
113                                    noverlap = overlap, visible=False)
114         psd = 10.0*log10(abs(fftpack.fftshift(psd)))
115         return (psd, freq)
116
117     def make_plots(self):
118         # if specified on the command-line, set file pointer
119         self.hfile.seek(self.sizeof_data*self.start, 1)
120
121         iqdims = [[0.075, 0.2, 0.4, 0.6], [0.075, 0.55, 0.4, 0.3]]
122         psddims = [[0.575, 0.2, 0.4, 0.6], [0.575, 0.55, 0.4, 0.3]]
123         specdims = [0.2, 0.125, 0.6, 0.3]
124         
125         # Subplot for real and imaginary parts of signal
126         self.sp_iq = self.fig.add_subplot(2,2,1, position=iqdims[self.dospec])
127         self.sp_iq.set_title(("I&Q"), fontsize=self.title_font_size, fontweight="bold")
128         self.sp_iq.set_xlabel("Time (s)", fontsize=self.label_font_size, fontweight="bold")
129         self.sp_iq.set_ylabel("Amplitude (V)", fontsize=self.label_font_size, fontweight="bold")
130
131         # Subplot for PSD plot
132         self.sp_psd = self.fig.add_subplot(2,2,2, position=psddims[self.dospec])
133         self.sp_psd.set_title(("PSD"), fontsize=self.title_font_size, fontweight="bold")
134         self.sp_psd.set_xlabel("Frequency (Hz)", fontsize=self.label_font_size, fontweight="bold")
135         self.sp_psd.set_ylabel("Power Spectrum (dBm)", fontsize=self.label_font_size, fontweight="bold")
136
137         self.get_data()
138         
139         self.plot_iq  = self.sp_iq.plot([], 'bo-') # make plot for reals
140         self.plot_iq += self.sp_iq.plot([], 'ro-') # make plot for imags
141         self.draw_time()                           # draw the plot
142
143         self.plot_psd = self.sp_psd.plot([], 'b')  # make plot for PSD
144         self.draw_psd()                            # draw the plot
145
146
147         if self.dospec:
148             # Subplot for spectrogram plot
149             self.sp_spec = self.fig.add_subplot(2,2,3, position=specdims)
150             self.sp_spec.set_title(("Spectrogram"), fontsize=self.title_font_size, fontweight="bold")
151             self.sp_spec.set_xlabel("Time (s)", fontsize=self.label_font_size, fontweight="bold")
152             self.sp_spec.set_ylabel("Frequency (Hz)", fontsize=self.label_font_size, fontweight="bold")
153
154             self.draw_spec()
155         
156         draw()
157
158     def draw_time(self):
159         reals = self.iq.real
160         imags = self.iq.imag
161         self.plot_iq[0].set_data([self.time, reals])
162         self.plot_iq[1].set_data([self.time, imags])
163         self.sp_iq.set_xlim(min(self.time), max(self.time))
164         self.sp_iq.set_ylim([1.5*min([min(reals), min(imags)]),
165                              1.5*max([max(reals), max(imags)])])
166
167     def draw_psd(self):
168         self.plot_psd[0].set_data([self.freq, self.iq_psd])
169         self.sp_psd.set_ylim([min(self.iq_psd)-10, max(self.iq_psd)+10])
170
171     def draw_spec(self):
172         overlap = self.specfftsize/4
173         winfunc = scipy.blackman
174         self.sp_spec.clear()
175         self.sp_spec.specgram(self.iq, self.specfftsize, self.sample_rate,
176                               window = lambda d: d*winfunc(self.specfftsize),
177                               noverlap = overlap, xextent=[min(self.time), max(self.time)])
178
179     def update_plots(self):
180         self.draw_time()
181         self.draw_psd()
182
183         if self.dospec:
184             self.draw_spec()
185
186         self.xlim = self.sp_iq.get_xlim() # so zoom doesn't get called
187         draw()
188         
189     def zoom(self, event):
190         newxlim = self.sp_iq.get_xlim()
191         if(newxlim.all() != self.xlim.all()):
192             self.xlim = newxlim
193             xmin = max(0, int(ceil(self.sample_rate*(self.xlim[0] - self.position))))
194             xmax = min(int(ceil(self.sample_rate*(self.xlim[1] - self.position))), len(self.iq))
195
196             iq = self.iq[xmin : xmax]
197             time = self.time[xmin : xmax]
198
199             iq_psd, freq = self.dopsd(iq)
200             
201             self.plot_psd[0].set_data(freq, iq_psd)
202             self.sp_psd.axis([min(freq), max(freq),
203                               min(iq_psd)-10, max(iq_psd)+10])
204
205             draw()
206
207     def click(self, event):
208         forward_valid_keys = [" ", "down", "right"]
209         backward_valid_keys = ["up", "left"]
210
211         if(find(event.key, forward_valid_keys)):
212             self.step_forward()
213             
214         elif(find(event.key, backward_valid_keys)):
215             self.step_backward()
216
217     def button_left_click(self, event):
218         self.step_backward()
219
220     def button_right_click(self, event):
221         self.step_forward()
222
223     def step_forward(self):
224         self.get_data()
225         self.update_plots()
226
227     def step_backward(self):
228         # Step back in file position
229         if(self.hfile.tell() >= 2*self.sizeof_data*self.block_length ):
230             self.hfile.seek(-2*self.sizeof_data*self.block_length, 1)
231         else:
232             self.hfile.seek(-self.hfile.tell(),1)
233         self.get_data()
234         self.update_plots()
235         
236 def find(item_in, list_search):
237     try:
238         return list_search.index(item_in) != None
239     except ValueError:
240         return False
241
242 def setup_options():
243     usage="%prog: [options] input_filename"
244     description = "Takes a GNU Radio binary file (with specified data type using --data-type) and displays the I&Q data versus time as well as the power spectral density (PSD) plot. The y-axis values are plotted assuming volts as the amplitude of the I&Q streams and converted into dBm in the frequency domain (the 1/N power adjustment out of the FFT is performed internally). The script plots a certain block of data at a time, specified on the command line as -B or --block. The start position in the file can be set by specifying -s or --start and defaults to 0 (the start of the file). By default, the system assumes a sample rate of 1, so in time, each sample is plotted versus the sample number. To set a true time and frequency axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples. Finally, the size of the FFT to use for the PSD and spectrogram plots can be set independently with --psd-size and --spec-size, respectively. The spectrogram plot does not display by default and is turned on with -S or --enable-spec."
245
246     parser = OptionParser(conflict_handler="resolve", usage=usage, description=description)
247     parser.add_option("-d", "--data-type", type="string", default="complex64",
248                       help="Specify the data type (complex64, float32, (u)int32, (u)int16, (u)int8) [default=%default]")
249     parser.add_option("-B", "--block", type="int", default=8192,
250                       help="Specify the block size [default=%default]")
251     parser.add_option("-s", "--start", type="int", default=0,
252                       help="Specify where to start in the file [default=%default]")
253     parser.add_option("-R", "--sample-rate", type="float", default=1.0,
254                       help="Set the sampler rate of the data [default=%default]")
255     parser.add_option("", "--psd-size", type="int", default=1024,
256                       help="Set the size of the PSD FFT [default=%default]")
257     parser.add_option("", "--spec-size", type="int", default=256,
258                       help="Set the size of the spectrogram FFT [default=%default]")
259     parser.add_option("-S", "--enable-spec", action="store_true", default=False,
260                       help="Turn on plotting the spectrogram [default=%default]")
261
262     return parser
263
264 def main():
265     parser = setup_options()
266     (options, args) = parser.parse_args ()
267     if len(args) != 1:
268         parser.print_help()
269         raise SystemExit, 1
270     filename = args[0]
271
272     dc = gr_plot_psd(options.data_type, filename, options)
273
274 if __name__ == "__main__":
275     try:
276         main()
277     except KeyboardInterrupt:
278         pass
279     
280
281