plt.close('all')
for file in glob.glob("data/*[0-9]"):
    plt.figure(1)
    plt.clf()
    st = obspy.read(file)
    plt.plot(st[0].data)
    wait = raw_input(file)
    

