Skip to content

Commit

Permalink
Use other freqs in collect_from_opcua
Browse files Browse the repository at this point in the history
  • Loading branch information
tammojan committed May 28, 2020
1 parent 963aa7f commit e183746
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion collect_from_opcua.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -30,7 +32,7 @@ def download_and_image(station_name, subband):

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)

0 comments on commit e183746

Please sign in to comment.