merging MSEED values in ASCII

Hi,

I am not sure weather I really understand what you want to do, so just a
few hints:

- to convert the timestamps to a UTCDateTime obejct:

  from obspy.core import UTCDateTime
  datetime = UTCDateTime(timestamp)

- to convert this to a String you can use

  datetime.__str__()

- np.savetxt is maybe not the right function to write mixed types to a
file. You might better use something like this:

hope that helps a bit.

Martin

boubacar wrote:

> Hello there,
>
> After the conversion of a single channel mseed file into ascii, I'm
> trying to add values
> taken from another mseed in a different column.(sampling rate are the

same)