First commit. Separated project out from MTPy.

This commit is contained in:
2024-05-01 17:46:03 +01:00
commit b1f5f37fa2
9 changed files with 834 additions and 0 deletions

11
read_layers.pyi Normal file
View File

@@ -0,0 +1,11 @@
from pathlib import Path
from typing import List, Tuple
from numpy import ndarray
def read_selected_layers(file_list: List[Path]) -> ndarray: ...
def read_layer(file: str) -> ndarray: ...
def read_file(filepath: Path) -> Tuple[ndarray, float, int]: ...
def get_z(filepath: Path) -> float: ...
def correct_x(x: float) -> None: ...
def correct_y(y: float) -> None: ...