From 2a4d71e1a80a6cf1489ff217a5806a2cd3320541 Mon Sep 17 00:00:00 2001 From: "E. Joshua Rigler" <erigler@usgs.gov> Date: Mon, 14 Nov 2022 09:07:24 -0700 Subject: [PATCH] Fix __create_trace() in StreamConverter_test.py A "feature" in obspy is that the stats.npts metadata object is not automatically calculated if a Trace is created by passing in a Stats object (instead of a simple dictionary). The Trace still contained the data array, which is probably why this issue wasn't discovered sooner, but something as simple as trace.times() is broken if npts is not specified. It's amazing this wasn't discovered sooner, given how many times traces get "created" throughout geomag-algoriothms. Probably, we should survey the codebase to make sure this isn't a problem elsewhere. --- test/StreamConverter_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/StreamConverter_test.py b/test/StreamConverter_test.py index 0c8b4207a..446a4b553 100644 --- a/test/StreamConverter_test.py +++ b/test/StreamConverter_test.py @@ -362,6 +362,7 @@ def __create_trace(channel, data, decbase=0): stats = obspy.core.Stats() stats.starttime = STARTTIME stats.delta = 60 + stats.npts = len(data) stats.declination_base = decbase stats.channel = channel numpy_data = numpy.array(data, dtype=numpy.float64) -- GitLab