-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path__init__.py
32 lines (30 loc) · 1.17 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from quartical.gains.complex import Complex, DiagComplex
from quartical.gains.amplitude import Amplitude
from quartical.gains.phase import Phase
from quartical.gains.delay import Delay
from quartical.gains.delay_and_offset import DelayAndOffset
from quartical.gains.tec_and_offset import TecAndOffset
from quartical.gains.rotation import Rotation
from quartical.gains.rotation_measure import RotationMeasure
from quartical.gains.crosshand_phase import CrosshandPhase, CrosshandPhaseNullV
from quartical.gains.leakage import Leakage
from quartical.gains.delay_and_tec import DelayAndTec
from quartical.gains.parallactic_angle import ParallacticAngle
from quartical.gains.feed_flip import FeedFlip
TERM_TYPES = {
"complex": Complex,
"diag_complex": DiagComplex,
"amplitude": Amplitude,
"phase": Phase,
"delay": Delay,
"delay_and_offset": DelayAndOffset,
"tec_and_offset": TecAndOffset,
"rotation": Rotation,
"rotation_measure": RotationMeasure,
"crosshand_phase": CrosshandPhase,
"crosshand_phase_null_v": CrosshandPhaseNullV,
"leakage": Leakage,
"delay_and_tec": DelayAndTec,
"parallactic_angle": ParallacticAngle,
"feed_flip": FeedFlip
}