Skip to content
Snippets Groups Projects
Commit b1309f4a authored by Adriaan Renting's avatar Adriaan Renting
Browse files

Task #11270: Fixed a bug in the imaging pipeline not recognizing SPARSE.

parent 1385e53e
No related branches found
No related tags found
No related merge requests found
...@@ -216,6 +216,8 @@ class imager_create_dbs(LOFARnodeTCP): ...@@ -216,6 +216,8 @@ class imager_create_dbs(LOFARnodeTCP):
station_diameter = lba_inner station_diameter = lba_inner
elif antenna_set.count('OUTER'): elif antenna_set.count('OUTER'):
station_diameter = lba_outer station_diameter = lba_outer
elif antenna_set.count('SPARSE'):
station_diameter = lba_outer
#raise exception if the antenna is not of a supported type #raise exception if the antenna is not of a supported type
if station_diameter == None: if station_diameter == None:
......
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