MS3RecordPtr¶
- class pymseed.mstracelist.MS3RecordPtr(cffi_ptr, parent_tracelist)[source]¶
Bases:
objectA record that contributed samples to a trace segment
Entries of an
MS3RecordList, present only when the trace list was read withrecord_list=True. Each locates its record in the source it was read from, byfilenameandfileoffsetfor a file or by an internal pointer for a buffer, and exposes the parsed header asrecordwithout decoding the data samples.Invalidated when the owning
MS3TraceListis closed; using it afterward raisesValueErrorinstead of reading freed memory.- Parameters:
cffi_ptr (Any)
parent_tracelist (Any)
- property record: MS3Record¶
Return a constructed MS3Record.
Borrowed from this entry: reading it after the trace list is closed raises
ValueError(see_msr_for_borrower()).