Imported Upstream version 3.2.2
[debian/gnuradio] / gr-utils / src / python / gr_plot_iq.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 scipy
25 except ImportError:
26     print "Please install SciPy to run this script (http://www.scipy.org/)"
27     raise SystemExit, 1
28
29 try:
30     from pylab import *
31 except ImportError:
32     print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)"
33     raise SystemExit, 1
34
35 from optparse import OptionParser
36
37 matplotlib.interactive(True)
38 matplotlib.use('TkAgg')
39
40 class draw_fft:
41     def __init__(self, filename, options):
42         self.hfile = open(filename, "r")
43         self.block_length = options.block
44         self.start = options.start
45         self.sample_rate = options.sample_rate
46
47         self.datatype = scipy.complex64
48         self.sizeof_data = self.datatype().nbytes    # number of bytes per sample in file
49
50         self.axis_font_size = 16
51         self.label_font_size = 18
52         self.title_font_size = 20
53         self.text_size = 22
54
55         # Setup PLOT
56         self.fig = figure(1, figsize=(16, 9), facecolor='w')
57         rcParams['xtick.labelsize'] = self.axis_font_size
58         rcParams['ytick.labelsize'] = self.axis_font_size
59         
60         self.text_file     = figtext(0.10, 0.94, ("File: %s" % filename), weight="heavy", size=self.text_size)
61         self.text_file_pos = figtext(0.10, 0.88, "File Position: ", weight="heavy", size=self.text_size)
62         self.text_block    = figtext(0.40, 0.88, ("Block Size: %d" % self.block_length),
63                                      weight="heavy", size=self.text_size)
64         self.text_sr       = figtext(0.60, 0.88, ("Sample Rate: %.2f" % self.sample_rate),
65                                      weight="heavy", size=self.text_size)
66         self.make_plots()
67
68         self.button_left_axes = self.fig.add_axes([0.45, 0.01, 0.05, 0.05], frameon=True)
69         self.button_left = Button(self.button_left_axes, "<")
70         self.button_left_callback = self.button_left.on_clicked(self.button_left_click)
71
72         self.button_right_axes = self.fig.add_axes([0.50, 0.01, 0.05, 0.05], frameon=True)
73         self.button_right = Button(self.button_right_axes, ">")
74         self.button_right_callback = self.button_right.on_clicked(self.button_right_click)
75
76         self.xlim = self.sp_iq.get_xlim()
77
78         self.manager = get_current_fig_manager()
79         connect('key_press_event', self.click)
80         show()
81
82     def get_data(self):
83         self.text_file_pos.set_text("File Position: %d" % (self.hfile.tell()//self.sizeof_data))
84         self.iq = scipy.fromfile(self.hfile, dtype=self.datatype, count=self.block_length)
85         #print "Read in %d items" % len(self.iq)
86         if(len(self.iq) == 0):
87             print "End of File"
88         else:
89             self.reals = [r.real for r in self.iq]
90             self.imags = [i.imag for i in self.iq]
91             self.time = [i*(1/self.sample_rate) for i in range(len(self.reals))]
92             
93     def make_plots(self):
94         # if specified on the command-line, set file pointer
95         self.hfile.seek(self.sizeof_data*self.start, 1)
96
97         self.get_data()
98         
99         # Subplot for real and imaginary parts of signal
100         self.sp_iq = self.fig.add_subplot(2,1,1, position=[0.075, 0.14, 0.85, 0.67])
101         self.sp_iq.set_title(("I&Q"), fontsize=self.title_font_size, fontweight="bold")
102         self.sp_iq.set_xlabel("Time (s)", fontsize=self.label_font_size, fontweight="bold")
103         self.sp_iq.set_ylabel("Amplitude (V)", fontsize=self.label_font_size, fontweight="bold")
104         self.plot_iq = plot(self.time, self.reals, 'bo-', self.time, self.imags, 'ro-')
105         self.sp_iq.set_ylim([1.5*min([min(self.reals), min(self.imags)]),
106                              1.5*max([max(self.reals), max(self.imags)])])
107         
108         draw()
109
110     def update_plots(self):
111         self.plot_iq[0].set_data([self.time, self.reals])
112         self.plot_iq[1].set_data([self.time, self.imags])
113         self.sp_iq.set_ylim([1.5*min([min(self.reals), min(self.imags)]),
114                              1.5*max([max(self.reals), max(self.imags)])])
115         draw()
116         
117     def click(self, event):
118         forward_valid_keys = [" ", "down", "right"]
119         backward_valid_keys = ["up", "left"]
120
121         if(find(event.key, forward_valid_keys)):
122             self.step_forward()
123             
124         elif(find(event.key, backward_valid_keys)):
125             self.step_backward()
126
127     def button_left_click(self, event):
128         self.step_backward()
129
130     def button_right_click(self, event):
131         self.step_forward()
132
133     def step_forward(self):
134         self.get_data()
135         self.update_plots()
136
137     def step_backward(self):
138         # Step back in file position
139         if(self.hfile.tell() >= 2*self.sizeof_data*self.block_length ):
140             self.hfile.seek(-2*self.sizeof_data*self.block_length, 1)
141         else:
142             self.hfile.seek(-self.hfile.tell(),1)
143         self.get_data()
144         self.update_plots()
145         
146
147 def find(item_in, list_search):
148     try:
149         return list_search.index(item_in) != None
150     except ValueError:
151         return False
152         
153 def main():
154     usage="%prog: [options] input_filename"
155     description = "Takes a GNU Radio complex binary file and displays the I&Q data versus time. You can set the block size to specify how many points to read in at a time and the start position in 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 axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples."
156
157     parser = OptionParser(conflict_handler="resolve", usage=usage, description=description)
158     parser.add_option("-B", "--block", type="int", default=1000,
159                       help="Specify the block size [default=%default]")
160     parser.add_option("-s", "--start", type="int", default=0,
161                       help="Specify where to start in the file [default=%default]")
162     parser.add_option("-R", "--sample-rate", type="float", default=1.0,
163                       help="Set the sampler rate of the data [default=%default]")
164     
165     (options, args) = parser.parse_args ()
166     if len(args) != 1:
167         parser.print_help()
168         raise SystemExit, 1
169     filename = args[0]
170
171     dc = draw_fft(filename, options)
172
173 if __name__ == "__main__":
174     try:
175         main()
176     except KeyboardInterrupt:
177         pass
178     
179
180