Spectrum with three interferometersΒΆ

This example shows the spectrum (power spectral density) of strain data for the three active detectors around GW200129_065458 (see Gravitational-Wave Transient Catalogue (GWTC) 3 for full details).

gwpy-plot spectrum \
    --gwosc \
    --ifo H1 L1 V1 \
    --start 1264316100 \
    --duration 32 \
    --xmin 10 \
    --xmax 4000 \
    --suptitle "GW detector sensitivity around GW200129_065458" \
    --interactive

The same command can be executed directly in Python as:

from gwpy.cli.gwpy_plot import main
main([
    'spectrum',
    '--gwosc',
    '--ifo', 'H1', 'L1', 'V1',
    '--start', '1264316100',
    '--duration', '32',
    '--xmin', '10',
    '--xmax', '4000',
    '--suptitle', 'GW detector sensitivity around GW200129_065458',
    '--interactive',
])
GW detector sensitivity around GW200129_065458, 2020-01-29 06:54:42.000 | 1264316100 (32.0), fftlength=1.0, overlap=0.5
/home/duncan.macleod/gwpy-nightly-build/gwpy/gwpy/types/series.py:933: UserWarning: FrequencySeries.crop given end larger than current end, crop will begin when the Series actually ends.
  warn(
Program run time: 21.6

Total running time of the script: (0 minutes 2.261 seconds)

Gallery generated by Sphinx-Gallery