|
24 | 24 |
|
25 | 25 | PIXEL_INDEX = np.arange(N_PIXELS)
|
26 | 26 |
|
| 27 | +#: Distance from central pin to elevaion axis |
27 | 28 | ELEVATION_AXIS_PIN_DISTANCE = 15.885 * u.m
|
28 | 29 | #: location of lst-1 as `~astropy.coordinates.EarthLocation`
|
29 | 30 | #: Taken from Abelardo's Coordinates of LST-1 & MAGIC presentation
|
|
35 | 36 | height=2184 * u.m + ELEVATION_AXIS_PIN_DISTANCE
|
36 | 37 | )
|
37 | 38 |
|
| 39 | +LST1_LOCATION_CTAO = EarthLocation( |
| 40 | + lon=-17.891496913272913 * u.deg, |
| 41 | + lat=28.761526467885083 * u.deg, |
| 42 | + # height of central pin + distance from pin to elevation axis |
| 43 | + height=2184 * u.m + ELEVATION_AXIS_PIN_DISTANCE |
| 44 | +) |
| 45 | + |
38 | 46 | #: location of lst-2 as `~astropy.coordinates.EarthLocation`
|
39 | 47 | #: Taken from https://gitlab.cta-observatory.org/cta-science/array-element-positions/-/blob/main/CTAN_ArrayElements_Positions.ecsv?ref_type=heads
|
40 | 48 | #: EPSG coordinates transformed to lon/lat using pyproj
|
41 |
| -LST2_LOCATION = EarthLocation( |
| 49 | +LST2_LOCATION_CTAO = EarthLocation( |
42 | 50 | lon=-17.892707541577614 * u.deg,
|
43 | 51 | lat=28.761847808998038 * u.deg,
|
44 | 52 | height=2172.5 * u.m + ELEVATION_AXIS_PIN_DISTANCE,
|
45 | 53 | )
|
46 | 54 | #: location of lst-3 as `~astropy.coordinates.EarthLocation`
|
47 |
| -LST3_LOCATION = EarthLocation( |
| 55 | +LST3_LOCATION_CTAO = EarthLocation( |
48 | 56 | lon=-17.892546711522133 * u.deg,
|
49 | 57 | lat=28.762845266359122 * u.deg,
|
50 | 58 | height=2168.2 * u.m + ELEVATION_AXIS_PIN_DISTANCE,
|
51 | 59 | )
|
52 | 60 | #: location of lst-4 as `~astropy.coordinates.EarthLocation`
|
53 |
| -LST4_LOCATION = EarthLocation( |
| 61 | +LST4_LOCATION_CTAO = EarthLocation( |
54 | 62 | lon=-17.89137994602903 * u.deg,
|
55 | 63 | lat=28.76244451041423 * u.deg,
|
56 | 64 | height=2172.8 * u.m + ELEVATION_AXIS_PIN_DISTANCE,
|
|
64 | 72 | )
|
65 | 73 |
|
66 | 74 | LST_LOCATIONS = {
|
67 |
| - 1: LST1_LOCATION, |
68 |
| - 2: LST2_LOCATION, |
69 |
| - 3: LST3_LOCATION, |
70 |
| - 4: LST4_LOCATION, |
| 75 | + 1: LST1_LOCATION_CTAO, |
| 76 | + 2: LST2_LOCATION_CTAO, |
| 77 | + 3: LST3_LOCATION_CTAO, |
| 78 | + 4: LST4_LOCATION_CTAO, |
71 | 79 | }
|
72 | 80 |
|
73 | 81 |
|
|
0 commit comments