gwpy icon indicating copy to clipboard operation
gwpy copied to clipboard

Package for analysing and characterising gravitational wave data in python

Results 179 gwpy issues
Sort by recently updated
recently updated
newest added

Could a bit more documentation please be added inside the timeseries.py file to indicate where the TimeSeries.write methods exist in the code tree? I believe the right place might be...

documentation

This `DataQualityDict` object doesn't seem to have a `__neg__` operator, where the `SegmentList` does - should be easy to implement.

difficulty-beginner
gwpy.segments
issue:feature-request
dep:glue

This PR fixes #1504 which reported an `IndexError` when attempting to create width-1 slices of `Array2D` objects.

api:patch
gwpy.types

See #1453. Could not build with sphinx-immaterial on my machines, but should be OK. I guess a version incompatibility. Will open an issue.

examples

Hello! I've recently come across a ValueError raised by SciPy when calling the method `gwpy.timeseries.TimeSeries.whiten` using a custom window stored in a NumPy array: ```python Traceback (most recent call last):...

issue:bug

This PR closes #1541 by updating the use of `pytest.raises` throughout the codebase to use the `match` keyword. This cleans things up a wee bit, and naturally allows more flexibility...

gwpy.cli
gwpy.io
gwpy.signal
gwpy.timeseries
gwpy.segments
gwpy.spectrogram
gwpy.table
api:patch
gwpy.frequencyseries
gwpy.types
gwpy.detector
gwpy.utils
gwpy.plot
gwpy.astro
continuous-integration

I've been having trouble getting the `TimeSeries.zpk()` and `FrequencySeries.zpk()` methods to produce sensible results. Attached is a script that produce a plot (below) that demonstrates the issues. ![gwpy_zpk_confused](https://user-images.githubusercontent.com/9920104/188206594-a198ecd7-6105-48c0-99cd-aa5117ab9239.png) The plot...

gwpy.signal
gwpy.timeseries

We should update the common pattern: ```python with pytest.raises(Exception) as exc: thing() assert str(exc.value) == message ``` to use the supported `match` keyword for pytest.raises, see https://docs.pytest.org/en/7.1.x/how-to/assert.html#assertions-about-expected-exceptions. The pattern would...

continuous-integration

Hello, I have noticed that the units of the output of the `frequencyseries.interpolate()` method do not match the units of its input. The output always seems to be dimensionless (at...

I am facing issues reading minute-trend data that I download and store in files locally in TimeSeries object. When I am downloading the data using the following lines of code...