Beamlet STatistics (BST)

NenuFAR delivers BST statistical data from the LaNewBA receiver. Beamlet STatistics (BST) are the beamlet outputs per polarization averaged at 1 s resolution

BST reading

BST

from nenupy.io.bst import BST

bst = BST("/path/to/BST.fits")

BST data selection

data = bst.get(
    frequency_selection="<=52MHz",
    time_selection=">=2022-01-24T11:08:10 & <2022-01-24T11:14:08",
    polarization="NW",
    beam=8
)

data is a ST_Slice object. See … for this class usage.