alignment
Main driver script for running the alignment.
You typically want to use the lat_alignment
entrypoint rather than
calling this directly.
adjust_panel(panel, mnum, cfg)
Helper function to get the adjustments for a single panel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
panel
|
Panel
|
The mirror panel to adjust. |
required |
mnum
|
int
|
The mirror number. 1 for the primary and 2 for the secondary. |
required |
cfg
|
dict
|
The configuration dictionairy. |
required |
Returns:
Name | Type | Description |
---|---|---|
adjustments |
NDArray[float32]
|
The adjustments to make for the panel.
This is a 17 element array with the following structure:
|
Source code in lat_alignment/alignment.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|