Script reads MSEED file and returns record structure.
Whole MSEED file is loaded to memory and
the file is processed in memory.
Loops are vectorised as much as possible. This version is optimalized for speed and supports only subset of MSEED format.
Chunks in traces are assumed to be saved chronologicaly. Interlaced traces are not supported. All traces in the file are assumed to have just one encoding type. Usage of more than one encoding format in the file is not supported yet. Only DATAONLY blockett is supported yet.
Supported data encoding formats:
big endian, little endian
INT16, INT32, FLOAT32, DOUBLE, STEIM1,
STEIM2.
Code is partially based on rdmmseed.m by
Franois Beauducel <beauducel@ipgp.fr>
Institut de Physique du Globe de Paris.
引用格式
Martin Mityska (2024). ReadMSEEDFast (https://www.mathworks.com/matlabcentral/fileexchange/46532-readmseedfast), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
平台兼容性
Windows macOS Linux类别
标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!版本 | 已发布 | 发行说明 | |
---|---|---|---|
1.8.0.0 | Bug fixed - the first blockett sequence number does not start with no 1 for some MSEED files. The first part of the record was missing in that case. Decoding is then started from the 1st blockett in the file. |
||
1.7.0.0 | Accidentally, the version for older Matlab was published. Corrected now - this is a version for Matlab R2014 and newer.
|
||
1.6.0.0 | matlabTimeVector field added.
|
||
1.5.0.0 | Support for multiple logical volumes in MSEED file added.
|
||
1.4.0.0 | Division changed to element-wise. Change of line 479.
|
||
1.3.0.0 | Added bitcmpOld(A,N) function to mimic old funcionality of bitcmp(A,N) which is deprected now.
|
||
1.2.0.0 | . |
||
1.1.0.0 | The former script was able to load 4096 bytes block size volumes only (recommended value according to IRIS specification). The new one fixes this issue. The block size check is peformed prior to the MSEED processing. |
||
1.0.0.0 |