Skip to content
Snippets Groups Projects
Commit d10afca8 authored by Cain, Payton David's avatar Cain, Payton David Committed by Jeremy M Fee
Browse files

Raise value error with bad timestamp

parent 91bdc882
No related branches found
No related tags found
No related merge requests found
......@@ -191,6 +191,10 @@ class FilterAlgorithm(Algorithm):
filtered = self.firfilter(trace.data, window, decimation)
stats = Stats(trace.stats)
stats.starttime = stats.starttime + input_sample_period * (numtaps // 2)
if stats.starttime.timestamp % output_sample_period != 0:
raise ValueError(
"Invalid starttime. Filter is not centered in timeseries."
)
stats.delta = output_sample_period
stats.npts = len(filtered)
trace_out = self.create_trace(stats.channel, stats, filtered)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment