mth5.clients.lemi424
Created on Fri Oct 11 10:57:54 2024
@author: jpeacock
Classes
Module Contents
- class mth5.clients.lemi424.LEMI424Client(data_path: str | pathlib.Path, save_path: str | pathlib.Path | None = None, mth5_filename: str = 'from_lemi424.h5', **kwargs: Any)[source]
Bases:
mth5.clients.base.ClientBase- make_mth5_from_lemi424(survey_id: str, station_id: str, **kwargs: Any) pathlib.Path[source]
Create an MTH5 file from LEMI 424 long period data.
- Parameters:
survey_id (str) – Survey identifier.
station_id (str) – Station identifier.
**kwargs (Any) – Additional keyword arguments to set as attributes.
- Returns:
Path to the created mth5 file.
- Return type:
Path
Examples
>>> client = LEMI424Client(data_path="./data") >>> client.make_mth5_from_lemi424("SURVEY1", "ST01") PosixPath('data/from_lemi424.h5')