find_urls#
- gwpy.io.datafind.find_urls(
- observatory: str,
- frametype: str,
- start: SupportsToGps,
- end: SupportsToGps,
- on_gaps: Literal['error', 'ignore', 'warn'] = 'error',
- **kwargs,
Find the URLs of files of a given data type in a GPS interval.
- Parameters:
- observatory
str The observatory for which to search, as a single character, e.g
"G"for GEO-600.- frametype
str Name of dataset to match.
- start
LIGOTimeGPS,int,str GPS start time of search. any input parseable by
to_gpsis fine. Non-integer GPS start time will be rounded down.- end
LIGOTimeGPS,int,str GPS end time of search. any input parseable by
to_gpsis fine Non-integer GPS end time will be rounded up.- on_gaps
str, optional Action to take when the requested all or some of the GPS interval is not covereed by the dataset, one of:
'error': raise aRuntimeError(default)'warn': emit a warning but return all available URLs'ignore': return the list of URLs with no warnings
- kwargs
Other arguments are passed to
gwdatafind.find_urls.
- observatory
See also
gwdatafind.find_urlsFor details of the underlying discovery tool, and supported keyword arguments.