GWDataFind
The GWDataFind data discovery client.
The GWDataFind service allows users to query for the location of Gravitational-Wave Frame (GWF) files containing data from the current gravitational-wave detectors.
Installation
The simplest installation is via pip:
python -m pip install gwdatafind
This package is also available as a Conda package:
conda install -c conda-forge gwdatafind
Basic Usage
To find the URLs of all H1_R files for the LIGO-Hanford observatory in
a given GPS interval:
>>> from gwdatafind import find_urls
>>> find_urls('H', 'H1_R', 1198800018, 1198800618)
To utillise connection pooling, create a Session:
>>> from gwdatafind import (find_urls, Session)
>>> with Session() as sess:
... for ifo in ("H", "L"):
... urls[ifo] = find_urls(
... ifo,
... f"{ifo}1_R",
... 1198800018,
... 1198800618,
... session=sess,
... )
## On the command-line
GWDataFind can also be executed via the command-line client, for full details
run
```bash
$ python -m gwdatafind --help
For more documentation, see https://gwdatafind.readthedocs.io/.
Release files for gwdatafind 2.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| gwdatafind-2.1.1.tar.gz | 41.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| gwdatafind-2.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 86.5 kB
Release files / gwdatafind-2.1.1.tar.gz
| Download URL | gwdatafind-2.1.1.tar.gz |
|---|---|
| Size | 41.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e4710256daa7b47e901da2f2846620c551e9caaaaf22b7773c81a8ae052da43e
|
|
BLAKE2b-256 checksum How to use checksums |
69dd4f517a2a36f71d5bb74b8b0796e3fec87703587503d4583f4a5b962ae60b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.14.0
|
Release files / gwdatafind-2.1.1-py3-none-any.whl
| Download URL | gwdatafind-2.1.1-py3-none-any.whl |
|---|---|
| Size | 45.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6e6d430fa243e6241ca0c214f1916f7973cf1937716bbca52d99a9b88650faeb
|
|
BLAKE2b-256 checksum How to use checksums |
b90007a1a9473ea5bbbc0be3cea79778dfd31e7e199404777907930badc9f399
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.14.0
|