Skip to content

Commit

Permalink
warning message in Response.get_evalresp_response
Browse files Browse the repository at this point in the history
  • Loading branch information
megies committed Dec 9, 2013
1 parent 00dcce3 commit c491aac
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion obspy/station/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,12 +703,18 @@ def get_evalresp_response(self, t_samp, nfft):
Returns frequency response and corresponding frequencies using
evalresp.
.. note:: This method is still expermimental
.. note::
This method is still experimental and not yet tested for all
possible response scenarios.
:param t_samp: time resolution (inverse frequency resolution)
:param nfft: Number of FFT points to use
:returns: tuple containing frequency response and frequencies
"""
msg = ("Response.get_evalresp_response() is experimental and not yet "
"tested for all possible response scenarios.")
warnings.warn(msg)
import ctypes as C
import numpy as np
import obspy.signal.evrespwrapper as ew
Expand Down

0 comments on commit c491aac

Please sign in to comment.