Skip to content

base

Utility functions for gravitational wave frame I/O.

from_T050017

from_T050017(url)

Parse a URL in the style of T050017-00.

Source code in src/sgn_gwframe/base.py
11
12
13
14
15
16
17
def from_T050017(url):  # noqa: N802
    """
    Parse a URL in the style of T050017-00.
    """
    filename, _ = os.path.splitext(os.path.basename(url))
    obs, desc, start, dur = filename.split("-")
    return obs, desc, int(start), int(dur)