We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 259cb5f + 2fb911d commit 28f3ebaCopy full SHA for 28f3eba
src/ITS/Propagation/LFMF/LFMF.py
@@ -33,6 +33,11 @@ class Result(Structure):
33
)
34
35
36
+class Polarization(IntEnum):
37
+ Horizontal = 0
38
+ Vertical = 1
39
+
40
41
def LFMF(
42
h_tx__meter: float,
43
h_rx__meter: float,
@@ -42,7 +47,7 @@ def LFMF(
47
d__km: float,
48
epsilon: float,
44
49
sigma: float,
45
- pol: int,
50
+ pol: Polarization,
46
51
) -> Result:
52
"""
53
Compute the Low Frequency / Medium Frequency (LF/MF) propagation prediction
src/ITS/Propagation/LFMF/__init__.py
@@ -2,6 +2,4 @@
2
# and Z is the version of this Python wrapper
3
__version__ = "1.1.0"
4
5
-from .LFMF import *
6
-
7
-__all__ = ["LFMF"]
+from .LFMF import LFMF, Polarization, Result
0 commit comments