implementing a Patch function for notch filtering #443
Replies: 3 comments
-
Hey @ahmadtourei, Really good idea! ObsPy has a bandstop implementation that uses a Butterworth-type filter which We could also do a |
Beta Was this translation helpful? Give feedback.
-
Sounds good! I'll work on it next week and get back to you @d-chambers. |
Beta Was this translation helpful? Give feedback.
-
closed by #448 |
Beta Was this translation helpful? Give feedback.
-
It would be great to design a notch filter that can remove a narrow frequency band (such as power line noise at 60 Hz). As the processing will be carried out in the frequency domain and also the filter can be a pre-processing step for some data processing pipelines, we'd want to follow the behavior of
Patch.whiten
so the function can be applied on a DFT patch as well to avoid multiple DFT/IDFT. scipy.signal.iirnotch can be used under the hood.Beta Was this translation helpful? Give feedback.
All reactions