Source code for mth5.io.phoenix.readers.header

# -*- coding: utf-8 -*-
"""
Adopted from TimeSeries reader, making all attributes properties for easier
reading and testing.

Module to read and parse native Phoenix Geophysics data formats of the MTU-5C Family

This module implements Streamed readers for segmented-decimated continuus-decimated
and native sampling rate time series formats of the MTU-5C family.

:author: Jorge Torres-Solis

Revised 2022 by J. Peacock 
"""

# =============================================================================
# Imports
# =============================================================================

from datetime import datetime

from struct import unpack_from
import string

from mt_metadata.timeseries import Station, Run, Electric, Magnetic
from mt_metadata.utils.mttime import MTime

# =============================================================================