Skip to content
Snippets Groups Projects
Commit f181a9b6 authored by Thomas Jürges's avatar Thomas Jürges
Browse files

Task SSB-42: Removed the flags array since flags are part of the data samples

parent 3a551c00
No related branches found
No related tags found
1 merge request!44Merge back holography to master
......@@ -94,7 +94,6 @@ class HolographyDataset():
"""
self.data = dict()
self.flags = dict()
for hbs, ho in list_of_hbs_ms_tuples:
if station_name in hbs.target_station_names:
frequency = ho.frequency
......@@ -111,15 +110,9 @@ class HolographyDataset():
if reference_station not in self.data:
self.data[reference_station] = dict()
if reference_station not in self.flags:
self.flags[reference_station] = dict()
if frequency not in self.data[reference_station]:
self.data[reference_station][frequency] = dict()
if frequency not in self.flags[reference_station]:
self.flags[reference_station][frequency] = dict()
self.data[reference_station][frequency][beamlet] = \
cross_correlation[reference_station_index, :]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment