How to export recorded data to ASCII or CSV format

I would like to display the shake 3D data in excel. Could you please suggest me how to do it on WIndows machine.

Thank you very much.

Hi @chanaropv—do you have experience with Python? obspy has a range of good ASCII export options. I don’t know of a way to do it with a GUI program.

https://docs.obspy.org/tutorial/code_snippets/export_seismograms_to_ascii.html

Ian

There’s also mseed2ascii:

which you run from a DOS box or Linux terminal.
It can produce huge ascii files.

Using it like this:

mseed2ascii.exe myshakefile -f 2 -o outfile

produces time as well as data.

3 Likes

Great suggestion. I had forgotten about this tool.

Thank you very much for your suggestion and I will try it.