%matplotlib inline
import os
Authors: Eric Koch, Karto Keating, and...
Based on scripts from Charlie Qi and Todd Hunter.
This tutorial provides an overview for calibrating SMA data using CASA.
Our tutorial data set is of the protoplanetary disk HD163296. The observations were taken on 2023/04/24 with the SMA's rx230 and rx240 receivers.
CASA is typically run from a terminal with information sent to the CASA logger, a separate window with the log file displayed. We recommend running this tutorial by opening the normal CASA terminal and copy-pasting the tutorial code in. This is easier to handle CASA's GUI applications (the logger, plotms, imview).
We use the notebook format here to include plots and example interleaved with the code.
Alternatively (and not recommended) you can load the CASA log within the jupyter lab environment and place a tile within the browser (drag the log file from the folder listing on the left into the notebook). However, jupyter's text editor does not yet have the capability to re-load, and so new lines will not be updated in the text editor view of the log. You can open and close (which is tedious) or open the log file in a separate text editor that handles reloading (for example, VSCode).
Working in the normal CASA terminal: Install the monolithic CASA distribution (this remains the CASA team's recommended option).
Working with modular CASA (this tutorial in a notebook): Install the modular distribution via pip install.
There will be a log for every SMA observation taken for your project on the SMAOC website. It is highly useful to review the operator's logs to check for any systematic issues that may have arisen through the night.
Here's the log for the tutorial data set:
The key thing to note is that 2 antennas were not included in the array that night, so we expect that 6 antennas will be recorded in our data set.
Otherwise, no other crucial issues are noted.
The native MIR format for SMA can be converted to a CASA measurement set (MS) using the pyuvdata python package. Currently, this conversion handles two common operations on the data:
For this tutorial, we have already used pyuvdata to convert to a measurement set using the example code below, where we have rechunked the data by a factor of 8:
from pyuvdata import UVData
mir_filename = "FILENAME"
rechunk_factor = 8 # Set to desired spectral chunking (avg. over 8 here).
uv_data = UVData()
uv_data.read(filename, rechunk=rechunk_factor)
# We suggest labeling the MS by the rechunk factor
uv_data.write_ms(f"{mir_filename}_bin{rechunk_factor}.ms")
# Import the CASA tasks and programs we'll need:
from casatasks import (listobs, clearcal, flagmanager, flagdata,
setjy, bandpass, gaincal, applycal, blcal, fluxscale)
from casaplotms import plotms
You appear to be importing analysisUtils into python (not CASA). version = 3.8.12 CASAPATH is not defined, so I am skipping a lot of imports
After running the above import, you should see a new CASA log file in the folder you've opened CASA in: casa-YYYMMDD-HHMMSS.log
To avoid having to remember the MS name, we will defined it here at the start as myvis
:
myvis = '230424_09:18:48_bin8.ms'
Start by inspecting what is contained in the data set. CASA's listobs
function will print out a long summary.
out = listobs(myvis)
For our tutorial data set, you should see the following printed by the CASA logger:
2023-05-10 21:07:55 INFO listobs::::casa ##########################################
2023-05-10 21:07:55 INFO listobs::::casa ##### Begin Task: listobs #####
2023-05-10 21:07:55 INFO listobs::::casa listobs( vis='230424_09:18:48_bin8.ms', selectdata=True, spw='', field='', antenna='', uvrange='', timerange='', correlation='', scan='', intent='', feed='', array='', observation='', verbose=True, listfile='', listunfl=False, cachesize=50.0, overwrite=False )
2023-05-10 21:07:55 INFO listobs::ms::summary ================================================================================
2023-05-10 21:07:55 INFO listobs::ms::summary+ MeasurementSet Name: /Users/ekoch/storage/SMASchool_Tutorial/230424_09:18:48_bin8.ms MS Version 2
2023-05-10 21:07:55 INFO listobs::ms::summary+ ================================================================================
2023-05-10 21:07:55 INFO listobs::ms::summary+ Observer: SMA Project:
2023-05-10 21:07:55 INFO listobs::ms::summary+ Observation: SMA
2023-05-10 21:07:55 INFO listobs::MSMetaData::_computeScanAndSubScanProperties Computing scan and subscan properties...
2023-05-10 21:07:56 INFO listobs::ms::summary Data records: 712080 Total elapsed time = 31528.9 seconds
2023-05-10 21:07:56 INFO listobs::ms::summary+ Observed from 24-Apr-2023/09:18:29.7 to 24-Apr-2023/18:03:58.6 (UTC)
2023-05-10 21:07:56 INFO listobs::ms::summary
2023-05-10 21:07:56 INFO listobs::ms::summary+ ObservationID = 0 ArrayID = 0
2023-05-10 21:07:56 INFO listobs::ms::summary+ Date Timerange (UTC) Scan FldId FieldName nRows SpwIds Average Interval(s) ScanIntent
2023-05-10 21:07:56 INFO listobs::ms::summary+ 24-Apr-2023/09:18:29.7 - 09:18:59.4 1 0 1159+292 360 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 09:20:58.1 - 10:08:49.6 2 1 3c279 64800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 10:09:19.3 - 10:16:44.5 3 2 Ceres 10800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 10:17:43.9 - 10:24:16.9 4 3 1733-130 4320 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 10:24:31.7 - 10:44:19.0 5 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 10:44:33.9 - 10:46:02.9 6 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 10:46:17.7 - 11:06:05.1 7 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:06:19.9 - 11:07:48.9 8 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:08:03.8 - 11:09:32.8 9 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:09:47.7 - 11:29:35.0 10 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:29:49.8 - 11:31:18.9 11 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:31:33.7 - 11:51:21.0 12 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:51:35.9 - 11:53:04.9 13 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:53:19.8 - 11:55:03.6 14 3 1733-130 2520 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11:55:18.5 - 12:15:05.8 15 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 12:15:20.6 - 12:21:53.6 16 3 1733-130 4320 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 12:22:08.5 - 12:41:55.8 17 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 12:42:10.6 - 12:43:39.7 18 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 12:43:54.5 - 12:45:23.5 19 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 12:45:38.4 - 13:05:25.7 20 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13:05:40.5 - 13:07:09.6 21 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13:07:24.4 - 13:27:11.7 22 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13:27:26.6 - 13:28:55.6 23 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13:29:10.5 - 13:30:39.5 24 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13:30:54.4 - 13:50:41.7 25 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13:50:56.5 - 13:52:25.6 26 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13:52:40.4 - 14:12:27.7 27 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 14:12:42.6 - 14:14:11.6 28 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 14:14:26.4 - 14:15:55.5 29 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 14:16:10.3 - 14:35:57.6 30 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 14:36:12.5 - 14:37:41.5 31 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 14:37:56.4 - 14:57:43.7 32 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 14:57:58.5 - 14:59:27.6 33 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:00:41.8 - 15:05:38.6 34 6 mwc349a 7200 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:06:52.8 - 15:10:20.6 35 5 1743-038 5040 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:10:50.3 - 15:12:19.3 36 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:12:34.2 - 15:32:21.5 37 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:32:36.3 - 15:34:05.4 38 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:37:40.2 - 15:57:27.6 39 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:57:42.4 - 15:59:11.4 40 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15:59:26.3 - 16:00:55.3 41 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 16:01:10.2 - 16:20:57.5 42 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 16:21:12.3 - 16:22:41.4 43 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 16:22:56.2 - 16:42:43.5 44 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 16:42:58.4 - 16:49:31.3 45 5 1743-038 4320 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 16:49:46.2 - 16:51:15.2 46 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 16:51:30.1 - 17:11:17.4 47 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17:11:32.2 - 17:13:01.3 48 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17:13:16.1 - 17:33:03.4 49 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17:33:18.3 - 17:34:47.3 50 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17:35:02.2 - 17:36:31.2 51 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17:36:46.0 - 17:56:33.4 52 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17:56:48.2 - 17:58:17.2 53 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17:59:01.8 - 18:03:58.6 54 6 mwc349a 7200 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:07:56 INFO listobs::ms::summary (nRows = Total number of rows per scan)
2023-05-10 21:07:56 INFO listobs::ms::summary Fields: 7
2023-05-10 21:07:56 INFO listobs::ms::summary+ ID Code Name RA Decl Epoch SrcId nRows
2023-05-10 21:07:56 INFO listobs::ms::summary+ 0 1159+292 11:59:31.834000 +29.14.43.82600 J2000 1 360
2023-05-10 21:07:56 INFO listobs::ms::summary+ 1 3c279 12:56:11.166000 -05.47.21.52400 J2000 2 64800
2023-05-10 21:07:56 INFO listobs::ms::summary+ 2 Ceres 12:02:29.094450 +16.05.10.59563 ICRS 3 10800
2023-05-10 21:07:56 INFO listobs::ms::summary+ 3 1733-130 17:33:02.706000 -13.04.49.54800 J2000 4 47880
2023-05-10 21:07:56 INFO listobs::ms::summary+ 4 HD163296 17:56:21.288000 -21.57.21.87000 J2000 5 547200
2023-05-10 21:07:56 INFO listobs::ms::summary+ 5 1743-038 17:43:58.856000 -03.50.04.61600 J2000 6 26640
2023-05-10 21:07:56 INFO listobs::ms::summary+ 6 mwc349a 20:32:45.540000 +40.39.36.61100 J2000 7 14400
2023-05-10 21:07:56 INFO listobs::ms::summary Spectral Windows: (24 unique spectral windows and 2 unique polarization setups)
2023-05-10 21:07:56 INFO listobs::ms::summary+ SpwID Name #Chans Frame Ch0(MHz) ChanWid(kHz) TotBW(kHz) CtrFreq(MHz) Corrs
2023-05-10 21:07:56 INFO listobs::ms::summary+ 0 SPW-6 2048 TOPO 199873.659 1117.188 2288000.0 201017.1007 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 1 SPW-5 2048 TOPO 204172.682 1117.188 2288000.0 203029.2404 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 2 SPW-4 2048 TOPO 203873.659 1117.188 2288000.0 205017.1007 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 3 SPW-3 2048 TOPO 208172.682 1117.188 2288000.0 207029.2404 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 4 SPW-2 2048 TOPO 207873.659 1117.188 2288000.0 209017.1007 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 5 SPW-1 2048 TOPO 212172.682 1117.188 2288000.0 211029.2404 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 6 SPW1 2048 TOPO 219873.659 1117.188 2288000.0 221017.1007 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 7 SPW2 2048 TOPO 224172.682 1117.188 2288000.0 223029.2404 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 8 SPW3 2048 TOPO 223873.659 1117.188 2288000.0 225017.1007 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 9 SPW4 2048 TOPO 228172.682 1117.188 2288000.0 227029.2404 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 10 SPW5 2048 TOPO 227873.659 1117.188 2288000.0 229017.1007 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 11 SPW6 2048 TOPO 232172.682 1117.188 2288000.0 231029.2404 XX
2023-05-10 21:07:56 INFO listobs::ms::summary+ 12 SPW506 2048 TOPO 211874.917 1117.188 2288000.0 213018.3589 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 13 SPW507 2048 TOPO 216173.940 1117.188 2288000.0 215030.4985 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 14 SPW508 2048 TOPO 215874.917 1117.188 2288000.0 217018.3589 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 15 SPW509 2048 TOPO 220173.940 1117.188 2288000.0 219030.4985 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 16 SPW510 2048 TOPO 219874.917 1117.188 2288000.0 221018.3589 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 17 SPW511 2048 TOPO 224173.940 1117.188 2288000.0 223030.4985 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 18 SPW513 2048 TOPO 231874.917 1117.188 2288000.0 233018.3589 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 19 SPW514 2048 TOPO 236173.940 1117.188 2288000.0 235030.4985 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 20 SPW515 2048 TOPO 235874.917 1117.188 2288000.0 237018.3589 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 21 SPW516 2048 TOPO 240173.940 1117.188 2288000.0 239030.4985 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 22 SPW517 2048 TOPO 239874.917 1117.188 2288000.0 241018.3589 YY
2023-05-10 21:07:56 INFO listobs::ms::summary+ 23 SPW518 2048 TOPO 244173.940 1117.188 2288000.0 243030.4985 YY
2023-05-10 21:07:56 INFO listobs::ms::summary Sources: 7
2023-05-10 21:07:56 INFO listobs::ms::summary+ ID Name SpwId RestFreq(MHz) SysVel(km/s)
2023-05-10 21:07:56 INFO listobs::ms::summary+ 1 1159+292 any - -
2023-05-10 21:07:56 INFO listobs::ms::summary+ 2 3c279 any - -
2023-05-10 21:07:56 INFO listobs::ms::summary+ 3 Ceres any - -
2023-05-10 21:07:56 INFO listobs::ms::summary+ 4 1733-130 any - -
2023-05-10 21:07:56 INFO listobs::ms::summary+ 5 HD163296 any - -
2023-05-10 21:07:56 INFO listobs::ms::summary+ 6 1743-038 any - -
2023-05-10 21:07:56 INFO listobs::ms::summary+ 7 mwc349a any - -
2023-05-10 21:07:56 INFO listobs::ms::summary Antennas: 6:
2023-05-10 21:07:56 INFO listobs::ms::summary+ ID Name Station Diam. Long. Lat. Offset from array center (m) ITRF Geocentric coordinates (m)
2023-05-10 21:07:56 INFO listobs::ms::summary+ East North Elevation x y z
2023-05-10 21:07:56 INFO listobs::ms::summary+ 1 Ant1 Ant1 6.0 m -155.28.39.8 +19.42.06.0 -20.1497 -13648.4593 -2468.4415 -5464541.666377 -2492902.458485 2150769.379487
2023-05-10 21:07:56 INFO listobs::ms::summary+ 3 Ant3 Ant3 6.0 m -155.28.40.9 +19.42.05.2 -53.7258 -13675.0318 -2471.0345 -5464561.533303 -2492874.602586 2150743.497991
2023-05-10 21:07:56 INFO listobs::ms::summary+ 4 Ant4 Ant4 6.0 m -155.28.39.7 +19.42.07.1 -19.0575 -13616.0917 -2468.4642 -5464531.269670 -2492898.916433 2150799.832803
2023-05-10 21:07:56 INFO listobs::ms::summary+ 5 Ant5 Ant5 6.0 m -155.28.41.4 +19.42.06.7 -68.0562 -13627.1312 -2473.1592 -5464550.977154 -2492854.029947 2150787.860803
2023-05-10 21:07:56 INFO listobs::ms::summary+ 6 Ant6 Ant6 6.0 m -155.28.39.1 +19.42.06.6 -0.0812 -13632.7167 -2468.3599 -5464528.577098 -2492918.553728 2150784.222301
2023-05-10 21:07:56 INFO listobs::ms::summary+ 8 Ant8 Ant8 6.0 m -155.28.39.9 +19.42.06.6 -25.2222 -13631.3393 -2468.4058 -5464538.554174 -2492895.461206 2150785.503044
2023-05-10 21:07:56 INFO listobs::::casa Task listobs complete. Start time: 2023-05-10 17:07:55.090822 End time: 2023-05-10 17:07:55.918963
2023-05-10 21:07:56 INFO listobs::::casa ##### End Task: listobs #####
2023-05-10 21:07:56 INFO listobs::::casa ##########################################
2023-05-10 21:08:05 INFO listobs::::casa ##########################################
2023-05-10 21:08:05 INFO listobs::::casa ##### Begin Task: listobs #####
2023-05-10 21:08:05 INFO listobs::::casa listobs( vis='230424_09:18:48_bin8.ms', selectdata=True, spw='', field='', antenna='', uvrange='', timerange='', correlation='', scan='', intent='', feed='', array='', observation='', verbose=True, listfile='', listunfl=False, cachesize=50.0, overwrite=False )
2023-05-10 21:08:05 INFO listobs::ms::summary ================================================================================
2023-05-10 21:08:05 INFO listobs::ms::summary+ MeasurementSet Name: /Users/ekoch/storage/SMASchool_Tutorial/230424_09:18:48_bin8.ms MS Version 2
2023-05-10 21:08:05 INFO listobs::ms::summary+ ================================================================================
2023-05-10 21:08:05 INFO listobs::ms::summary+ Observer: SMA Project:
2023-05-10 21:08:05 INFO listobs::ms::summary+ Observation: SMA
2023-05-10 21:08:05 INFO listobs::MSMetaData::_computeScanAndSubScanProperties Computing scan and subscan properties...
2023-05-10 21:08:05 INFO listobs::ms::summary Data records: 712080 Total elapsed time = 31528.9 seconds
2023-05-10 21:08:05 INFO listobs::ms::summary+ Observed from 24-Apr-2023/09:18:29.7 to 24-Apr-2023/18:03:58.6 (UTC)
2023-05-10 21:08:05 INFO listobs::ms::summary
2023-05-10 21:08:05 INFO listobs::ms::summary+ ObservationID = 0 ArrayID = 0
2023-05-10 21:08:05 INFO listobs::ms::summary+ Date Timerange (UTC) Scan FldId FieldName nRows SpwIds Average Interval(s) ScanIntent
2023-05-10 21:08:05 INFO listobs::ms::summary+ 24-Apr-2023/09:18:29.7 - 09:18:59.4 1 0 1159+292 360 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7, 29.7]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 09:20:58.1 - 10:08:49.6 2 1 3c279 64800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 10:09:19.3 - 10:16:44.5 3 2 Ceres 10800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 10:17:43.9 - 10:24:16.9 4 3 1733-130 4320 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 10:24:31.7 - 10:44:19.0 5 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 10:44:33.9 - 10:46:02.9 6 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 10:46:17.7 - 11:06:05.1 7 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:06:19.9 - 11:07:48.9 8 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:08:03.8 - 11:09:32.8 9 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:09:47.7 - 11:29:35.0 10 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:29:49.8 - 11:31:18.9 11 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:31:33.7 - 11:51:21.0 12 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:51:35.9 - 11:53:04.9 13 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:53:19.8 - 11:55:03.6 14 3 1733-130 2520 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11:55:18.5 - 12:15:05.8 15 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 12:15:20.6 - 12:21:53.6 16 3 1733-130 4320 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 12:22:08.5 - 12:41:55.8 17 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 12:42:10.6 - 12:43:39.7 18 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 12:43:54.5 - 12:45:23.5 19 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 12:45:38.4 - 13:05:25.7 20 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13:05:40.5 - 13:07:09.6 21 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13:07:24.4 - 13:27:11.7 22 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13:27:26.6 - 13:28:55.6 23 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13:29:10.5 - 13:30:39.5 24 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13:30:54.4 - 13:50:41.7 25 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13:50:56.5 - 13:52:25.6 26 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13:52:40.4 - 14:12:27.7 27 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 14:12:42.6 - 14:14:11.6 28 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 14:14:26.4 - 14:15:55.5 29 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 14:16:10.3 - 14:35:57.6 30 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 14:36:12.5 - 14:37:41.5 31 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 14:37:56.4 - 14:57:43.7 32 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 14:57:58.5 - 14:59:27.6 33 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:00:41.8 - 15:05:38.6 34 6 mwc349a 7200 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:06:52.8 - 15:10:20.6 35 5 1743-038 5040 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:10:50.3 - 15:12:19.3 36 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:12:34.2 - 15:32:21.5 37 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:32:36.3 - 15:34:05.4 38 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:37:40.2 - 15:57:27.6 39 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:57:42.4 - 15:59:11.4 40 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15:59:26.3 - 16:00:55.3 41 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 16:01:10.2 - 16:20:57.5 42 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 16:21:12.3 - 16:22:41.4 43 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 16:22:56.2 - 16:42:43.5 44 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 16:42:58.4 - 16:49:31.3 45 5 1743-038 4320 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 16:49:46.2 - 16:51:15.2 46 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 16:51:30.1 - 17:11:17.4 47 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17:11:32.2 - 17:13:01.3 48 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17:13:16.1 - 17:33:03.4 49 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17:33:18.3 - 17:34:47.3 50 5 1743-038 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17:35:02.2 - 17:36:31.2 51 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17:36:46.0 - 17:56:33.4 52 4 HD163296 28800 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17:56:48.2 - 17:58:17.2 53 3 1733-130 2160 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17:59:01.8 - 18:03:58.6 54 6 mwc349a 7200 [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23] [14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8, 14.8]
2023-05-10 21:08:05 INFO listobs::ms::summary (nRows = Total number of rows per scan)
2023-05-10 21:08:05 INFO listobs::ms::summary Fields: 7
2023-05-10 21:08:05 INFO listobs::ms::summary+ ID Code Name RA Decl Epoch SrcId nRows
2023-05-10 21:08:05 INFO listobs::ms::summary+ 0 1159+292 11:59:31.834000 +29.14.43.82600 J2000 1 360
2023-05-10 21:08:05 INFO listobs::ms::summary+ 1 3c279 12:56:11.166000 -05.47.21.52400 J2000 2 64800
2023-05-10 21:08:05 INFO listobs::ms::summary+ 2 Ceres 12:02:29.094450 +16.05.10.59563 ICRS 3 10800
2023-05-10 21:08:05 INFO listobs::ms::summary+ 3 1733-130 17:33:02.706000 -13.04.49.54800 J2000 4 47880
2023-05-10 21:08:05 INFO listobs::ms::summary+ 4 HD163296 17:56:21.288000 -21.57.21.87000 J2000 5 547200
2023-05-10 21:08:05 INFO listobs::ms::summary+ 5 1743-038 17:43:58.856000 -03.50.04.61600 J2000 6 26640
2023-05-10 21:08:05 INFO listobs::ms::summary+ 6 mwc349a 20:32:45.540000 +40.39.36.61100 J2000 7 14400
2023-05-10 21:08:05 INFO listobs::ms::summary Spectral Windows: (24 unique spectral windows and 2 unique polarization setups)
2023-05-10 21:08:05 INFO listobs::ms::summary+ SpwID Name #Chans Frame Ch0(MHz) ChanWid(kHz) TotBW(kHz) CtrFreq(MHz) Corrs
2023-05-10 21:08:05 INFO listobs::ms::summary+ 0 SPW-6 2048 TOPO 199873.659 1117.188 2288000.0 201017.1007 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 1 SPW-5 2048 TOPO 204172.682 1117.188 2288000.0 203029.2404 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 2 SPW-4 2048 TOPO 203873.659 1117.188 2288000.0 205017.1007 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 3 SPW-3 2048 TOPO 208172.682 1117.188 2288000.0 207029.2404 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 4 SPW-2 2048 TOPO 207873.659 1117.188 2288000.0 209017.1007 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 5 SPW-1 2048 TOPO 212172.682 1117.188 2288000.0 211029.2404 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 6 SPW1 2048 TOPO 219873.659 1117.188 2288000.0 221017.1007 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 7 SPW2 2048 TOPO 224172.682 1117.188 2288000.0 223029.2404 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 8 SPW3 2048 TOPO 223873.659 1117.188 2288000.0 225017.1007 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 9 SPW4 2048 TOPO 228172.682 1117.188 2288000.0 227029.2404 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 10 SPW5 2048 TOPO 227873.659 1117.188 2288000.0 229017.1007 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 11 SPW6 2048 TOPO 232172.682 1117.188 2288000.0 231029.2404 XX
2023-05-10 21:08:05 INFO listobs::ms::summary+ 12 SPW506 2048 TOPO 211874.917 1117.188 2288000.0 213018.3589 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 13 SPW507 2048 TOPO 216173.940 1117.188 2288000.0 215030.4985 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 14 SPW508 2048 TOPO 215874.917 1117.188 2288000.0 217018.3589 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 15 SPW509 2048 TOPO 220173.940 1117.188 2288000.0 219030.4985 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 16 SPW510 2048 TOPO 219874.917 1117.188 2288000.0 221018.3589 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 17 SPW511 2048 TOPO 224173.940 1117.188 2288000.0 223030.4985 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 18 SPW513 2048 TOPO 231874.917 1117.188 2288000.0 233018.3589 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 19 SPW514 2048 TOPO 236173.940 1117.188 2288000.0 235030.4985 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 20 SPW515 2048 TOPO 235874.917 1117.188 2288000.0 237018.3589 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 21 SPW516 2048 TOPO 240173.940 1117.188 2288000.0 239030.4985 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 22 SPW517 2048 TOPO 239874.917 1117.188 2288000.0 241018.3589 YY
2023-05-10 21:08:05 INFO listobs::ms::summary+ 23 SPW518 2048 TOPO 244173.940 1117.188 2288000.0 243030.4985 YY
2023-05-10 21:08:05 INFO listobs::ms::summary Sources: 7
2023-05-10 21:08:05 INFO listobs::ms::summary+ ID Name SpwId RestFreq(MHz) SysVel(km/s)
2023-05-10 21:08:05 INFO listobs::ms::summary+ 1 1159+292 any - -
2023-05-10 21:08:05 INFO listobs::ms::summary+ 2 3c279 any - -
2023-05-10 21:08:05 INFO listobs::ms::summary+ 3 Ceres any - -
2023-05-10 21:08:05 INFO listobs::ms::summary+ 4 1733-130 any - -
2023-05-10 21:08:05 INFO listobs::ms::summary+ 5 HD163296 any - -
2023-05-10 21:08:05 INFO listobs::ms::summary+ 6 1743-038 any - -
2023-05-10 21:08:05 INFO listobs::ms::summary+ 7 mwc349a any - -
2023-05-10 21:08:05 INFO listobs::ms::summary Antennas: 6:
2023-05-10 21:08:05 INFO listobs::ms::summary+ ID Name Station Diam. Long. Lat. Offset from array center (m) ITRF Geocentric coordinates (m)
2023-05-10 21:08:05 INFO listobs::ms::summary+ East North Elevation x y z
2023-05-10 21:08:05 INFO listobs::ms::summary+ 1 Ant1 Ant1 6.0 m -155.28.39.8 +19.42.06.0 -20.1497 -13648.4593 -2468.4415 -5464541.666377 -2492902.458485 2150769.379487
2023-05-10 21:08:05 INFO listobs::ms::summary+ 3 Ant3 Ant3 6.0 m -155.28.40.9 +19.42.05.2 -53.7258 -13675.0318 -2471.0345 -5464561.533303 -2492874.602586 2150743.497991
2023-05-10 21:08:05 INFO listobs::ms::summary+ 4 Ant4 Ant4 6.0 m -155.28.39.7 +19.42.07.1 -19.0575 -13616.0917 -2468.4642 -5464531.269670 -2492898.916433 2150799.832803
2023-05-10 21:08:05 INFO listobs::ms::summary+ 5 Ant5 Ant5 6.0 m -155.28.41.4 +19.42.06.7 -68.0562 -13627.1312 -2473.1592 -5464550.977154 -2492854.029947 2150787.860803
2023-05-10 21:08:05 INFO listobs::ms::summary+ 6 Ant6 Ant6 6.0 m -155.28.39.1 +19.42.06.6 -0.0812 -13632.7167 -2468.3599 -5464528.577098 -2492918.553728 2150784.222301
2023-05-10 21:08:05 INFO listobs::ms::summary+ 8 Ant8 Ant8 6.0 m -155.28.39.9 +19.42.06.6 -25.2222 -13631.3393 -2468.4058 -5464538.554174 -2492895.461206 2150785.503044
2023-05-10 21:08:05 INFO listobs::::casa Task listobs complete. Start time: 2023-05-10 17:08:04.780816 End time: 2023-05-10 17:08:05.419178
2023-05-10 21:08:05 INFO listobs::::casa ##### End Task: listobs #####
2023-05-10 21:08:05 INFO listobs::::casa ##########################################
There's a lot of info here! The listobs output is a useful resource to return to check: when a source is observed (first section), which sources are in the data (second section), the spectral coverage or "windows" (third section), another summary of the sources (with rest frequency and systemic velocity, when available; fourth section), and the antennas in the array for this observation (last section).
From this information, along with knowledge of how the observations were set up (which you as the scientist would have done for your own observations!), we can define the purpose of each source for calibration.
In this observation, we have 7 sources:
There may be extra sources in the observation! In this case mwc349a
could be used as a backup flux calibrator. Occasionally another quasar source will show up in the data that was used for pointing corrections through the night, though typically that data will be flagged.
We will define each of the sources as their own variable:
# variable names for the sources are case sensitive
flux = 'Ceres'
bpcal= '3c279'
# Gain calibrators
# NOTE: SMA observations often have 2 gain calibrators. If you only have one, comment out `pcal2' and remove its
# use in `bothpcal`. Similarly, you *could* have more than two, in which case add a `pcal3` and add to `bothpcal`
# ppropriate!
pcal1 = '1743-038'
pcal2= '1733-130'
# A variable to use both gain cals
bothpcal = f"{pcal1},{pcal2}"
# A variable with all the calibrator names for convenience later
calfields= ",".join([bpcal, bothpcal, flux])
# If you have more than 1 science field, separate the source names by a comma in the string.
science_fields = 'HD163296'
Another pertinent piece of information is the spectral windows that tells us the spectral coverage of these observations. For SMA observations since ~2021, each receiver has 12 GHz sideband split into 6 spectral windows covering 2 GHz each. Each 2 GHz "chunk" is a spectral window (SPW) in CASA.
Each SMA receiver has 2 sidebands, so 12 SPWs per receiver.
And 2 receivers operate at one time, so 24 SPWs altogether.
Dual receiver mode - Each SMA receiver is recording a single polarization (when not in polarization mode) and the receiver pair can be tuned together to give the YY and XX dual polarization at the same frequencies. With dual receiver tuning, the MS file will only have 12 SPWs, but each will have the YY and XX polarization listed in the listobs output above.
Split tuning mode - When each SMA receiver is tuned to a different local oscillator (LO) frequency, there will be 24 SPWs, each with a single polarization. Depending on the tuning, a frequency range may still have dual polarization coverage, but the SPWs from each receiver will not align in frequency like in dual receiver mode (see above). This is the mode this tutorial data set is taken in! The SPW numbers range from 0 to 23.
Before we get started, we will make a backup of the original flags applied using the flagmanager
task in case we want to restart the process from scratch.
flagmanager(vis=myvis, mode='save', versionname='original')
2023-05-11 18:06:47 WARN flagmanager::::casa Version name 'original' already exist. Will rename it to original.old.1683828406
It's helpful to visually inspect the data to know what is in the raw visibilities and to identify systematic issues that should be flagged prior to data calibration. CASA plotms is the tool for this task.
NOTE: We are assuming that the plotms window will open separately in your desktop, not in the jupyter environment. If you are running this in jupyter and nothing is shown, see this tutorial.
To quickly check the data, we will plot the averaged time-amplitude vs. spectral channel using plotms of the bandpass calibrator:
plotms(vis=myvis, xaxis='channel',
yaxis='amp',field=bpcal, avgtime='1e8', avgscan=False,
coloraxis='ant1',iteraxis='spw', ydatacolumn='data',
gridrows=4, gridcols=3, yselfscale=True)
In a separate window, you should see something that looks like this:
This plot is showing multiple things:
iteraxis='spw
)coloraxis='ant1'
)The y axes share a common scaling (yselfscale=True
) which is helpful to catch pesky amplitude outliers. In this case, we see there are a few groups of high amplitude outliers. These are very likely a systematic issue when recording the data at particular frequencies. Because of this, we will flag these point as "bad" to exclude their use in the calibration steps.
For this flagging, we use CASA's flagdata
task.
To manually flag the data, we at least need to know (a) which SPW it is in, and (b) the range of channels the spike corresponds to.
NOTE: you can approach this in a more careful manner by ALSO flagging only individual antenna, baselines, or time ranges where/when the spike occurs. The important of thise really depends on the science goal and whether or not you may have a spectral line at those corresponding frequencies. In our case, we will simply flag that range for this source (3c279) as it is a miniscule loss of continuum sensitivity (the spectral range is a small fraction of the total bandwidth).
plotms allows us to do this interactively. Select the magnifying glass on the left side of the bottom tool bar, and use it draw a box over one of the subplots to zoom in. Keep zooming in until (a) you can read the channel range from the x-axis, or (b) you can highlight those points and print a summary to the logger. Method (b): on the bottom tool bar, select the box with the green "+", draw a box around the point you want to highlight (in this case, the amplitude outliers) and, again on the bottom tool bar, click the magnifying glass in front of the white rectangle (to the right of the box with the green "+" you just clicked). Now check the logger. It should give you a summary of the selected visibility points.
For our purposes here, we will use option (a) to zoom in and look at the x-axis range.
Choosing SPW 1 (top center panel), we find the affected channel range is SPW 1 from channels X~Y. We can flag that data using the following:
flagdata(vis=myvis, mode='manual', spw='1:127', flagbackup=False) # We'll save a flag version after all manual flagging is done
flagdata(vis=myvis, mode='manual', spw='1:143', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='1:151', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='1:134~136', flagbackup=False) # Flag a range from 134 to 136
{}
To see the effect of the flagging, click the "reload" button in the plotms window
and press plot.
We should now see those channels "missing" in the reloaded plot:
Systematic amplitude spikes are often symmetric in both sidebands. SPW 1 that we flagged above is the 5th "chunk" from the local oscillator frequency in the lower sideband. The corresponding 5th chunk in the upper sideband is SPW 10 for this receiver. To check this, next zoom into the spikes in SPW 10. You should find that they correspond to the same channel numbers.
When these spikes are symmetrically offset about the local oscillator, we can flag the bad channels in a moderately more efficient way by specifying both SPW numbers to flagdata
:
flagdata(vis=myvis, mode='manual', spw='1:127,10:127', flagbackup=False) # We'll save a flag version after all manual flagging is done
flagdata(vis=myvis, mode='manual', spw='1:143,10:143', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='1:151,10:151', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='1:134~136,10:134~136', flagbackup=False) # Flag a range from 134 to 136
{}
Try reloading the plot again. You should see the spikes gone in both SPWs 1 and 10.
Repeat for the spikes in SPWs 2 and 9.
flagdata(vis=myvis, mode='manual', spw='2:117,9:117', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='2:124~125,9:124~125', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='2:141,9:141', flagbackup=False)
{}
And lastly, we'll need to flag similar spikes for the 2nd receiver. Click the "play" button in plotms to show the 12 SPWs corresponding to the second receiver spectral coverage:
# Chunk 5 in the lower sideband (LSB) and upper sideband (USB)
flagdata(vis=myvis, mode='manual', spw='13:127,22:127', flagbackup=False) # We'll save a flag version after all manual flagging is done
flagdata(vis=myvis, mode='manual', spw='13:143,22:143', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='13:151,22:151', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='13:134~136,22:134~136', flagbackup=False) # Flag a range from 134 to 136
# Chunk 4 in the lower sideband (LSB) and upper sideband (USB)
flagdata(vis=myvis, mode='manual', spw='14:125,21:125', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='14:141,21:141', flagbackup=False)
# Chunk 2 in the lower sideband (LSB) and upper sideband (USB)
flagdata(vis=myvis, mode='manual', spw='16:1536,19:1536', flagbackup=False)
flagdata(vis=myvis, mode='manual', spw='16:1731,19:1731', flagbackup=False)
### Back up a version of the flags we've just added! ####
flagmanager(vis=myvis, mode='save', versionname='manual_flagging_initial')
Once all the spikes have been removed, re-load the plot once more. You should see something similar to this for SPW 12 to 23:
The spectral variations we are left with correspond to a combination of the system response and atmospheric absorption features. We will correct for this with the bandpass.
Near the edge of each 2 GHz SPW, the sensitivity drops off. We will typically flag these edge channels as they become highly noisy. The SMA's spectral coverage is set to mildly overlap between adjacent SPWs, so flagging ~2-3% of the edge channels will still give us continuous spectral coverage across each 12 GHz sideband.
Because the SMA observes with the same number of spectral channels (each with a width of 140 kHz), we can fraction of the percent edges if we know how the data have been downsampled. Natively, each SPW will have 16384 channels. In this tutorial, we have pre-averaged the channels together by a factor of 8.
Here we will flag the outer 2.5% of channels, or a fraction of 0.025
.
# Factor the data have been downsampled by:
rechunk = 8
# Original number of channels is 16384. Divide that by how many we have rechunked.
chan_num = int(16384 / rechunk)
# Set the fraction of channels to flag at each edge.
edgechan_frac = 0.025
# Range of channels to flag at the lower edge
edge_chan_low = int(np.floor(chan_num * edgechan_frac))
# Range of channels to flag at the upper edge
edge_chan_high = int(np.floor(chan_num * (1. - edgechan_frac)))
# Combine into the format that CASA's flagdata will interpret
# To select all SPWs, we use the "*" wildcard.
# Also note that channel counting starts at "0", so we set the upper limit to be `chan_num-1`
edgechan = "*:0~{0};{1}~{2}".format(edge_chan_low,
edge_chan_high, chan_num-1)
print(edgechan)
*:0~51;1996~2047
Compare this channel range to those plotted in plotms as a check.
We can then apply the edge flagging, and save a flag version in case we want to re-run the edge flagging with a different fraction chosen in the cell above.
flagdata(vis=myvis, mode='manual', spw=edgechan, flagbackup=False)
flagmanager(vis=myvis, mode='save', versionname='edge_flagging')
As above, re-load the plot in plotms. You should now see something like this plot for SPW 12 to 23:
Our bandpass 3C279 is looking cleaned up after the above round of manual flagging. But before moving on to the actual calibration, we should similarly check the other calibrator sources for any other systematic issues.
Below is an abbreviated version above of plotting the amplitude vs. frequency, but looking at the other calibrators. After that, we will also check the amplitude vs. time.
Checking for manual flagging on the flux calibrator Ceres:
Amplitude vs. frequency
plotms(vis=myvis, xaxis='channel',
yaxis='amp',field=flux, avgtime='1e8', avgscan=False,
coloraxis='ant1',iteraxis='spw', ydatacolumn='data',
gridrows=4, gridcols=3, yselfscale=True)
# This is an individual channel outlier that only appear in 1 channel, not in both sidebands.
# Based on the color of the points, these outliers are all coming from the same antenna: Ant4
flagdata(vis=myvis, mode='manual', field=flux, spw="10:732", antenna='Ant4', flagbackup=False)
flagdata(vis=myvis, mode='manual', field=flux, spw="13:732,22:732", antenna='Ant4', flagbackup=False)
flagdata(vis=myvis, mode='manual', field=flux, spw="13:1329,22:1329", antenna='Ant4', flagbackup=False)
flagdata(vis=myvis, mode='manual', field=flux, spw="14:124,21:124", antenna='Ant4', flagbackup=False)
flagdata(vis=myvis, mode='manual', field=flux, spw="14:133,21:133", antenna='Ant4', flagbackup=False)
flagdata(vis=myvis, mode='manual', field=flux, spw="14:230,21:230", antenna='Ant4', flagbackup=False)
{}
Amplitude vs. Time
This plotms call is close to the one above, but we instead plot time (xaxis='time'
) and average over frequency (avgchannel='1e8'
).
NOTE: you may get warnings the avgchannel
is larger than actual number of channels. This is OK and can be ignored.
plotms(vis=myvis, xaxis='time',
yaxis='amp',field=flux, avgchannel='1e8',
coloraxis='ant1',iteraxis='spw', ydatacolumn='data',
gridrows=4, gridcols=3, yselfscale=True)
2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 0 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 0 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 1 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 1 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 2 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 2 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 3 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 3 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 4 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 4 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 5 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 5 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 6 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 6 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 7 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 7 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 8 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 8 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 9 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 9 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 10 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 10 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 11 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 11 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 12 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 12 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 13 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 13 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 14 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 14 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 15 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 15 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 16 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 16 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 17 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 17 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 18 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 18 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 19 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 19 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 20 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 20 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 21 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 21 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 22 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 22 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams Number of selected channels 2048 for SPW 23 is smaller than specified chanbin 100000000 2023-05-11 13:27:28 WARN MSTransformManager::initDataSelectionParams+ Setting chanbin to 2048 for SPW 23 2023-05-11 13:27:29 INFO MeasIERS::fillMeas(MeasIERS::Files, Double) Requested JD 60058.4 is outside the range of the IERS (Earth axis data) table. 2023-05-11 13:27:29 INFO MeasIERS::fillMeas(MeasIERS::Files, Double) + Calculations will proceed with less precision 2023-05-11 13:27:29 SEVERE MeasTable::dUTC(Double) (file casa-source/casatools/casacore/measures/Measures/MeasTable.cc, line 4290) Leap second table TAI_UTC seems out-of-date. 2023-05-11 13:27:29 SEVERE MeasTable::dUTC(Double) (file casa-source/casatools/casacore/measures/Measures/MeasTable.cc, line 4290)+ Until the table is updated (see the CASA documentation or your system admin), 2023-05-11 13:27:29 SEVERE MeasTable::dUTC(Double) (file casa-source/casatools/casacore/measures/Measures/MeasTable.cc, line 4290)+ times and coordinates derived from UTC could be wrong by 1s or more.
What are we looking for in time? Similar to frequency, we do not expect large outliers, and the amplitude should be roughly constant in time.
In this case, the data looks good in time: