# Copyright (C) 2017 Alex Nitz
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# =============================================================================
#
# Preamble
#
# =============================================================================
#
""" This modules contains information about the announced LIGO/Virgo
compact binary mergers
"""
import json
from pycbc.io import get_file
# For the time being all quantities are the 1-d median value
# FIXME with posteriors when available and we can just post-process that
# LVC catalogs
base_lvc_url = "https://www.gw-openscience.org/eventapi/jsonfull/{}/"
_catalogs = {'GWTC-1-confident': 'LVC',
'GWTC-1-marginal': 'LVC',
'Initial_LIGO_Virgo': 'LVC',
'O1_O2-Preliminary': 'LVC',
'O3_Discovery_Papers': 'LVC',
'GWTC-2': 'LVC',
'GWTC-2.1-confident': 'LVC',
'GWTC-2.1-marginal': 'LVC',
'GWTC-3-confident': 'LVC',
'GWTC-3-marginal': 'LVC'}
# add some aliases
_aliases = {}
_aliases['gwtc-1'] = 'GWTC-1-confident'
_aliases['gwtc-2'] = 'GWTC-2'
_aliases['gwtc-2.1'] = 'GWTC-2.1-confident'
_aliases['gwtc-3'] = 'GWTC-3-confident'
[docs]def list_catalogs():
"""Return a list of possible GW catalogs to query"""
return list(_catalogs.keys())
[docs]def get_source(source):
"""Get the source data for a particular GW catalog
"""
if source in _aliases:
source = _aliases[source]
if source in _catalogs:
catalog_type = _catalogs[source]
if catalog_type == 'LVC':
fname = get_file(base_lvc_url.format(source), cache=True)
data = json.load(open(fname, 'r'))
else:
raise ValueError('Unkown catalog source {}'.format(source))
return data['events']