├── README.md ├── index.ipynb ├── requirements.txt └── runtime.txt /README.md: -------------------------------------------------------------------------------- 1 | # quickview 2 | 3 | ## GWOSC Data Quickview 4 | 5 | Welcome! This IPython notebook provides a quick look at short segments of data from the Gravitational Wave Open Science Center 6 | 7 | * Set the GPS time (t0) and detector in the first cell 8 | * Click "Run All" in the cell menu at the top 9 | * Your plots will appear at the bottom of the page. 10 | 11 | 12 | Click a badge to run the notebook: 13 | 14 | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gwosc-tutorial/quickview/blob/master/index.ipynb) 15 | 16 | 17 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | h5py 2 | matplotlib 3 | scipy 4 | gwpy 5 | gwosc 6 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10 2 | 3 | --------------------------------------------------------------------------------