Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ History

X.Y.Z (YYYY-MM-DD)
------------------
* Support missing data during BDA (:pr:`252`)
* Document Fused RIME (:pr:`270`)
* Add Multiton, LazyProxy and LazyProxyMultiton patterns (:pr:`269`)


0.3.2 (2022-13-01)
------------------
* Support numba >= 0.54 (:pr:`264`)
Expand Down
4 changes: 2 additions & 2 deletions africanus/averaging/bda_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ def finalise_bin(self, auto_corr, uvw, time, interval,
# The following is copied from DDFacet. Variables names could
# be changed but wanted to keep the correspondence clear.
# BH: I strongly suspect this is wrong: see eq. 18-19 in SI II
delta_nu = (lightspeed / (2*np.pi)) * \
(self.decorrelation / max_abs_dist)
delta_nu = ((lightspeed / (2*np.pi)) *
(self.decorrelation / max_abs_dist))

fracsizeChanBlock = delta_nu / chan_width

Expand Down