Joseph Areeda
Joseph Areeda
Evidently it's possible for Omicron to produce ligolw and hdf5 files with no triggers. This corner case occurs when - Reading from a list of files in a cache -...
It doesn't resample the input time series or pass the parameter to the qtransform method
What brought this to light was an attempt to generate a coherence spectrogram over 100s of data with an FFT length of 8 s an overlap of 99%. The minimum...
Searching the spectrogram for the minimum nonzero value exposed a functional style indexing problem with 2D GWpy objects. This snippet reproduces it. ```from gwpy.timeseries import TimeSeries import numpy as np...
The code snippet below demonstrates the issue which traces to gwpy/signal/filter_design.py:245, 247 ``` zeros = numpy.array(zeros, dtype=float, copy=False) zeros = zeros[numpy.isfinite(zeros)] poles = numpy.array(poles, dtype=float, copy=False) ``` It produces the...
--epoch is treated as an absolute time. We used to be able to set it relative to start time.
I may be the only one who uses it but the option is there so that the color bar limits can be set to a percentile value of the actual...
Trivial one line to address issue #1652 "truthiness" Value error.
This seems to be an issue that produced a warning that has become an error with a current release of astropy.units. The error message produced is: ``` File "/Users/areeda/mambaforge/envs/igwn-py310/lib/python3.10/site-packages/gwpy/cli/qtransform.py", line...
Another try to deal with this change necessary because tests for thuthiness are more strict.