swh:1:snp:3a699297f000109a1bc833f294a54171df990207
Raw File
Tip revision: 5f8141616ec37e27402c460b96b3602ad955964a authored by Alex Nitz on 25 June 2018, 12:41:12 UTC
set to 1.11.0 release (#2211)
Tip revision: 5f81416
what.py
import pycbc.catalog

c = pycbc.catalog.Catalog()

# Names of mergers in the catalog
print c.names

# Approximate GPS time of the mergers
print [c[m].time for m in c]
back to top