segment_query_url

dqsegdb2.api.segment_query_url(host, ifo, name, version, start=None, end=None, include='metadata,known,active')

Returns the URL to use in querying for segments

Parameters:
host

the URL of the target DQSEGDB2 host

ifo

the interferometer prefix

name

the name of the flag

version

the version of the flag

start=None

the start GPS time of the query

end=None

the end GPS time of the query

include='metadata,known,active'

the data to return, should be a comma-separated list of keys

Returns:

url – the full REST URL to query for information

Return type:

str

Examples

>>> from dqsegdb2.api import segment_query_url
>>> print(segment_query_url('https://segments.ligo.org', 'G1',
...                         'GEO-SCIENCE', 1, 1000000000, 11000000000))
'https://segments.ligo.org/dq/G1/GEO-SCIENCE/1?s=1000000000&e=11000000000&include=metadata,known,active'

Last update: May 23, 2023