find_observatories

gwdatafind.find_observatories(*args, **kwargs)

Query the LDR host for observatories.

Parameters:
match : str, re.Pattern

restrict returned observatories to those matching a regular expression.

Returns:
obs : list of str

the list of known osbervatory prefices (and combinations)

Examples

>>> from gwdatafind import connect
>>> conn = connect()
>>> conn.find_observatories()
['AGHLT', 'G', 'GHLTV', 'GHLV', 'GHT', 'H', 'HL', 'HLT',
 'L', 'T', 'V', 'Z']
>>> conn.find_observatories("H")
['H', 'HL', 'HLT']