From e183746b8f1ed30eaf31465806d9df396f6fb834 Mon Sep 17 00:00:00 2001 From: Tammo Jan Dijkema Date: Thu, 28 May 2020 11:31:09 +0200 Subject: [PATCH] Use other freqs in collect_from_opcua --- collect_from_opcua.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/collect_from_opcua.py b/collect_from_opcua.py index 07c0e9b..23b5d8b 100755 --- a/collect_from_opcua.py +++ b/collect_from_opcua.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +import matplotlib +matplotlib.use("Agg") import time from lofarimaging.opc_interface import download_xst from lofarimaging import make_xst_plots @@ -30,7 +32,7 @@ if __name__ == "__main__": while True: for station_name in ("RS210", "RS208", "CS103"): - for subband in (150, 250, 350, 375, 400, 425): + for subband in (150, 250, 300, 350, 375, 400): thread = threading.Thread(target=download_and_image, args=(station_name, subband)) thread.start() time.sleep(30)