swh:1:snp:3a699297f000109a1bc833f294a54171df990207
Raw File
Tip revision: 0729ad857c236b0f34e3757b8419889f3835217c authored by Alex Nitz on 16 July 2018, 23:23:04 UTC
Update setup.py
Tip revision: 0729ad8
data.py
import pycbc.catalog, pylab

m = pycbc.catalog.Merger("GW170817")

# Retreive data from the Livingston observatory around the BNS merger
ts = m.strain("L1").time_slice(m.time - 30, m.time + 6)

# Whiten the data with a 4s filter
white = ts.whiten(4, 4)

times, freqs, power = white.qtransform(.01, logfsteps=200,
                                    qrange=(110, 110),
                                    frange=(20, 512))
pylab.pcolormesh(times, freqs, power**0.5)
pylab.yscale('log')
pylab.ylabel("Frequency (Hz)")
pylab.xlabel("Time (s)")
pylab.show()
back to top