Coverage for C: \ Users \ peaco \ OneDrive \ Documents \ GitHub \ mth5 \ mth5 \ io \ phoenix \ readers \ mtu \ __init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-10 00:01 -0800

1""" 

2MTU_utils - Utility to read the Canadian Phoenix MTU-5A instrument 

3time series binary files in Matlab (and Python) 

4 

5A bunch of simple scripts to read the legacy Phoenix MTU-5A binary format 

6files ... including the time series (.TSN) and table (.TBL) formats. 

7 

8Original files by: 

9 

10DONG Hao 

11donghao@cugb.edu.cn 

12China University of Geosciences, Beijing 

13 

14Updated and adapted to Python by: 

15Peacock, J.R. (2025-12-31) 

16""" 

17 

18from .mtu_table import MTUTable 

19from .mtu_ts import MTUTSN 

20 

21__all__ = ["MTUTable", "MTUTSN"]