-
How can I read a mseed file with 1024 byte record length? Sample file is attached.
-
{{{
# !python
from obspy.core import read
st = read("/bay_mobil/old_data/RJOB_2006_08_07-2006_12_13/EHZ.D/RJOB.BW.EHZ.D.300806.0000")
print st[0].stats
st = read("/bay_mobil/old_data/RJOB_2006_08_07-…
-
Mail from Chad Trabant
{{{
The most recent releases of libmseed have included a ms_readmsr_main() function that takes a "selections" argument that in turn is a list of data segment(s) to read from the…
-
(1) obspy.mseed should automatically choose the right output format - in this case float32
{{{
# !python
> > > import asc
> > > a=asc.readASC("tests/data/TEST_090101_0101.ASC")
> > > a[0].data.dtype
…
-
This..
{{{
# !python
import numpy as np
from obspy.core import Trace
tr = Trace(data=np.ones(2))
print tr
tr.write("onesample.MSEED", "MSEED")
}}}
prints the following and doesn't terminate.
{{{
...…
-
Working ...
{{{
from obspy.core import read, Trace, Stream, UTCDateTime
import numpy as np
data = np.fromstring("very big string with at least 17 chars", dtype='|S1')
tr = Trace(data=data)
tr.write("…
-
{{{
> > > from obspy.core import read
> > >
> > > st=read('test.mseed')
> > > Traceback (most recent call last):
> > > File "", line 1, in
> > > File "/import/nero-barsch/workspace/obspy/obspy.…
-
So my code is successful in merging the compounds, and I tested this extensively.
What the problem seems to be is that when the reactions themselves are added to the new biochemistry object, the comp…
-
1. My source code is:
{{{
client = Client(host="webdc.eu", port=18001)
t = UTCDateTime("2009-08-24 00:20:03")
st = client.getWaveform('BW', 'RJOB', '', 'EHZ', t, t+30)
st.write( "/home/…
-
Hi,
Is it possible to return the byte positions (beginning and end) of each stream from a mseed file with the existing functions? I have mseed volumes with massive sizes, and it will be quite useful …