obspy.io.ascii.core
Simple ASCII time series formats
SLIST
, a ASCII time series format represented with a header line followed by a sample lists (see alsoSLIST format description
):TIMESERIES BW_RJOB__EHZ_D, 6001 samples, 200 sps, 2009-08-24T00:20:03.000000, SLIST, INTEGER, 288 300 292 285 265 287 279 250 278 278 268 258 ...
TSPAIR
, a ASCII format where data is written in time-sample pairs (see alsoTSPAIR format description
):TIMESERIES BW_RJOB__EHZ_D, 6001 samples, 200 sps, 2009-08-24T00:20:03.000000, TSPAIR, INTEGER, 2009-08-24T00:20:03.000000 288 2009-08-24T00:20:03.005000 300 2009-08-24T00:20:03.010000 292 2009-08-24T00:20:03.015000 285 2009-08-24T00:20:03.020000 265 2009-08-24T00:20:03.025000 287 ...
- copyright:
The ObsPy Development Team (devs@obspy.org)
- license:
GNU Lesser General Public License, Version 3 (https://www.gnu.org/copyleft/lesser.html)
Private Functions
Warning
Private functions are mainly for internal/developer use and their API might change without notice.
|
|
Checks whether a file is ASCII SLIST format. |
|
Checks whether a file is ASCII TSPAIR format. |
|
Simple function to read data contained in a StringIO object to a NumPy array. |
|
Reads a ASCII SLIST file and returns an ObsPy Stream object. |
|
Reads a ASCII TSPAIR file and returns an ObsPy Stream object. |
|
Writes a ASCII SLIST file. |
|
Writes a ASCII TSPAIR file. |