Revision ce165145 gnuradio-core/src/utils/gr_plot_float.py
| b/gnuradio-core/src/utils/gr_plot_float.py | ||
|---|---|---|
| 20 | 20 |
# Boston, MA 02110-1301, USA. |
| 21 | 21 |
# |
| 22 | 22 |
|
| 23 |
import pylab, math
|
|
| 23 |
import scipy
|
|
| 24 | 24 |
from pylab import * |
| 25 |
import struct, sys |
|
| 26 | 25 |
from optparse import OptionParser |
| 27 | 26 |
|
| 28 |
import gr_read_binary |
|
| 27 |
matplotlib.interactive(True) |
|
| 28 |
matplotlib.use('TkAgg')
|
|
| 29 |
|
|
| 30 |
class draw_fft_c: |
|
| 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_f.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()//4))
|
|
| 71 |
f = scipy.fromfile(self.hfile, dtype=scipy.float32, count=self.block_length) |
|
| 72 |
#print "Read in %d items" % len(self.f) |
|
| 73 |
if(len(f) == 0): |
|
| 74 |
print "End of File" |
|
| 75 |
else: |
|
| 76 |
self.f = f |
|
| 77 |
self.time = [i*(1/self.sample_rate) for i in range(len(self.f))] |
|
| 78 |
|
|
| 79 |
def make_plots(self): |
|
| 80 |
# if specified on the command-line, set file pointer |
|
| 81 |
self.hfile.seek(8*self.start, 1) |
|
| 82 |
|
|
| 83 |
self.get_data() |
|
| 84 |
|
|
| 85 |
# Subplot for real and imaginary parts of signal |
|
| 86 |
self.sp_f = self.fig.add_subplot(2,1,1, position=[0.075, 0.2, 0.875, 0.6]) |
|
| 87 |
self.sp_f.set_title(("Amplitude"), fontsize=self.title_font_size, fontweight="bold")
|
|
| 88 |
self.sp_f.set_xlabel("Time (s)", fontsize=self.label_font_size, fontweight="bold")
|
|
| 89 |
self.sp_f.set_ylabel("Amplitude (V)", fontsize=self.label_font_size, fontweight="bold")
|
|
| 90 |
self.plot_f = plot(self.time, self.f, 'bo-') |
|
| 91 |
self.sp_f.set_ylim([1.5*min(self.f), |
|
| 92 |
1.5*max(self.f)]) |
|
| 93 |
|
|
| 94 |
draw() |
|
| 95 |
|
|
| 96 |
def update_plots(self): |
|
| 97 |
self.plot_f[0].set_data([self.time, self.f]) |
|
| 98 |
self.sp_f.set_ylim([1.5*min(self.f), |
|
| 99 |
1.5*max(self.f)]) |
|
| 100 |
draw() |
|
| 101 |
|
|
| 102 |
def click(self, event): |
|
| 103 |
forward_valid_keys = [" ", "down", "right"] |
|
| 104 |
backward_valid_keys = ["up", "left"] |
|
| 105 |
|
|
| 106 |
if(find(event.key, forward_valid_keys)): |
|
| 107 |
self.step_forward() |
|
| 108 |
|
|
| 109 |
elif(find(event.key, backward_valid_keys)): |
|
| 110 |
self.step_backward() |
|
| 111 |
|
|
| 112 |
def button_left_click(self, event): |
|
| 113 |
self.step_backward() |
|
| 114 |
|
|
| 115 |
def button_right_click(self, event): |
|
| 116 |
self.step_forward() |
|
| 117 |
|
|
| 118 |
def step_forward(self): |
|
| 119 |
self.get_data() |
|
| 120 |
self.update_plots() |
|
| 121 |
|
|
| 122 |
def step_backward(self): |
|
| 123 |
# Step back in file position |
|
| 124 |
if(self.hfile.tell() >= 8*self.block_length ): |
|
| 125 |
self.hfile.seek(-8*self.block_length, 1) |
|
| 126 |
else: |
|
| 127 |
self.hfile.seek(-self.hfile.tell(),1) |
|
| 128 |
self.get_data() |
|
| 129 |
self.update_plots() |
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
#FIXME: there must be a way to do this with a Python builtin |
|
| 134 |
def find(item_in, list_search): |
|
| 135 |
for l in list_search: |
|
| 136 |
if item_in == l: |
|
| 137 |
return True |
|
| 138 |
return False |
|
| 29 | 139 |
|
| 30 | 140 |
def main(): |
| 31 |
usage="%prog: [options] output_filename" |
|
| 32 |
parser = OptionParser(conflict_handler="resolve", usage=usage) |
|
| 33 |
parser.add_option("-s", "--size", type="int", default=None,
|
|
| 34 |
help="Specify the number of points to plot [default=%default]") |
|
| 35 |
parser.add_option("", "--skip", type="int", default=None,
|
|
| 36 |
help="Specify the number of points to skip [default=%default]") |
|
| 141 |
usage="%prog: [options] input_filename" |
|
| 142 |
description = "Takes a GNU Radio floating point binary file and displays the samples 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." |
|
| 37 | 143 |
|
| 144 |
parser = OptionParser(conflict_handler="resolve", usage=usage, description=description) |
|
| 145 |
parser.add_option("-B", "--block", type="int", default=1000,
|
|
| 146 |
help="Specify the block size [default=%default]") |
|
| 147 |
parser.add_option("-s", "--start", type="int", default=0,
|
|
| 148 |
help="Specify where to start in the file [default=%default]") |
|
| 149 |
parser.add_option("-R", "--sample-rate", type="float", default=1.0,
|
|
| 150 |
help="Set the sampler rate of the data [default=%default]") |
|
| 151 |
|
|
| 38 | 152 |
(options, args) = parser.parse_args () |
| 39 | 153 |
if len(args) != 1: |
| 40 | 154 |
parser.print_help() |
| 41 | 155 |
raise SystemExit, 1 |
| 42 | 156 |
filename = args[0] |
| 43 | 157 |
|
| 44 |
fl = gr_read_binary.read_float_binary(filename) |
|
| 45 |
|
|
| 46 |
if(options.skip is None): |
|
| 47 |
options.skip = 0 |
|
| 48 |
|
|
| 49 |
if((options.size is None) or ((options.skip+options.size) > len(iq[0]))): |
|
| 50 |
options.size = len(fl) - options.skip |
|
| 51 |
|
|
| 52 |
x = range(options.skip, options.skip + options.size) |
|
| 53 |
|
|
| 54 |
# PLOT REAL AND IMAGINARY PARTS |
|
| 55 |
|
|
| 56 |
f = figure(1, figsize=(16, 12), facecolor='w') |
|
| 57 |
rcParams['xtick.labelsize'] = 16 |
|
| 58 |
rcParams['ytick.labelsize'] = 16 |
|
| 59 |
|
|
| 60 |
sp1 = f.add_subplot(1,1,1) |
|
| 61 |
sp1.set_title(("GNU Radio Float"), fontsize=26, fontweight="bold")
|
|
| 62 |
sp1.set_xlabel("Time (s)", fontsize=20, fontweight="bold")
|
|
| 63 |
sp1.set_ylabel("Amplitude (V)", fontsize=20, fontweight="bold")
|
|
| 64 |
plot(x, fl, 'bo-') |
|
| 65 |
|
|
| 66 |
show() |
|
| 158 |
dc = draw_fft_c(filename, options) |
|
| 67 | 159 |
|
| 68 | 160 |
if __name__ == "__main__": |
| 69 | 161 |
try: |
| ... | ... | |
| 71 | 163 |
except KeyboardInterrupt: |
| 72 | 164 |
pass |
| 73 | 165 |
|
| 74 |
|
|
| 75 |
|
|
Also available in: Unified diff