How to take out on Seisan Stream

Dear Obspy Forum.

Glad to write again, and thanks for the time you’ll spend reading it.

I have a Seisan Data with almost 70 waveforms inside and I wanted to “take out” some waveforms saving time and not reading/searching one by one, I tried to do the following code to get the number of a soecific waveform but it did not work…

Hi Gonzalo,

it's not exactly clear what you are trying to do to me, but it looks
like you're trying to extract the Trace of a specific station by it's
station code?

Try something like:

from obspy import read
st = read(r'G:\comparacion de riudo\2014-08-21-0600-00S.MAN___071')
st = st.select(station="BS09")
print st

best,
Tobias

On 08/25/2014 04:44 AM, gonzalo antonio fernandez mara�on wrote: