Source code for sourcefinder.accessors.lofaraccessor

from dataclasses import dataclass


@dataclass
[docs] class LofarAccessor(): """ Additional metadata required for processing LOFAR images through QC checks. Attributes ---------- antenna_set : str Antenna set in use during observation. Possible values are 'LBA_INNER', 'LBA_OUTER', 'LBA_SPARSE', 'LBA', or 'HBA'. ncore : int Number of core stations in use during observation. nremote : int Number of remote stations in use during observation. nintl : int Number of international stations in use during observation. subbandwidth : float Width of a subband in Hz. subbands : int Number of subbands. """
[docs] antenna_set: str
[docs] ncore: int
[docs] nremote: int
[docs] nintl: int
[docs] subbandwidth: float
[docs] subbands: int