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