obspy.io.reftek.core.Reftek130

class Reftek130[source]

Bases: object

Public Methods

check_packet_sequence_and_sort

Checks if packet sequence is ordered.

check_packet_sequence_contiguous

Checks if packet sequence is contiguous, i.e. without missing packets in between.

drop_not_implemented_packet_types

Checks if there are packets of a type that is currently not implemented and drop them showing a warning message.

from_file

to_stream

type headonly:

bool

Special Methods

Reftek130.__delattr__(name, /)

Implement delattr(self, name).

Reftek130.__dir__()

Default dir() implementation.

Reftek130.__eq__(value, /)

Return self==value.

Reftek130.__format__(format_spec, /)

Default object formatter.

Reftek130.__ge__(value, /)

Return self>=value.

Reftek130.__getattribute__(name, /)

Return getattr(self, name).

Reftek130.__gt__(value, /)

Return self>value.

Reftek130.__hash__()

Return hash(self).

Reftek130.__init__()[source]
Reftek130.__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

Reftek130.__le__(value, /)

Return self<=value.

Reftek130.__lt__(value, /)

Return self<value.

Reftek130.__ne__(value, /)

Return self!=value.

Reftek130.__new__(**kwargs)
Reftek130.__reduce__()

Helper for pickle.

Reftek130.__reduce_ex__(protocol, /)

Helper for pickle.

Reftek130.__repr__()

Return repr(self).

Reftek130.__setattr__(name, value, /)

Implement setattr(self, name, value).

Reftek130.__sizeof__()

Size of object in memory, in bytes.

Reftek130.__str__(compact=True)[source]
Reftek130.__subclasshook__()

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).