Skip to content
Snippets Groups Projects
Commit c47ab1e1 authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-574: fix array dimension bugs

parent 6814320d
No related branches found
No related tags found
1 merge request!234Resolve L2SS-574 "Move hbat code to recv"
......@@ -101,7 +101,9 @@ class Beam(lofar_device):
delays = self._HBAT_delays(pointing_direction, timestamp)
# Convert delays into beam weights
delays = delays.flatten()
HBAT_bf_delays = self.recv_proxy.calculate_HBAT_bf_delays(delays)
HBAT_bf_delays = numpy.array(HBAT_bf_delays, dtype=numpy.int64).reshape(96,32)
# Write weights to RECV
self.recv_proxy.HBAT_BF_delays_RW = HBAT_bf_delays
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment