obspy.io.mseed.core._is_mseed
- _is_mseed(file)[source]
Checks whether a file is Mini-SEED/full SEED or not.
- Parameters:
file (str or file-like object) – Mini-SEED/full SEED file to be checked.
- Return type:
- Returns:
True
if a Mini-SEED file.
This method only reads the first seven bytes of the file and checks whether its a Mini-SEED or full SEED file.
It also is true for fullSEED files because libmseed can read the data part of fullSEED files. If the method finds a fullSEED file it also checks if it has a data part and returns False otherwise.
Thus it cannot be used to validate a Mini-SEED or SEED file.