-
Notifications
You must be signed in to change notification settings - Fork 7
/
example.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 8 should actually have 1 column, instead of 2 in line 7.
62 lines (57 loc) · 2.63 KB
/
example.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
################################################################################
#
# MWA ASVO Example CSV file
#
# This file can be used as a template for the manta-ray-client python
# command-line utility mwa_client. There are four common examples in this file.
#
# The simplest way to use this example is to install manta-ray-client, then:
#
# mwa_client -c example.csv -d /path/to/downloadfiles/to
#
# This will:
# 1. Submit all of the data jobs to the server
# 2. If you leave the client running it will block/poll until the data job files are ready for download
# 3. As each data job completes, it will download the files to the directory you specified in -d
#
# Alternatively, you can Ctrl-C the mwa_client after it submits the jobs and monitor and download
# the data yourself via the web interface.
#
# For full details and all possible settings (especially for data conversion
# jobs), visit:
#
# https://github.com/ICRAR/manta-ray-client and view the README.md
#
################################################################################
#
# You can use hashes (#) to comment your csv files! Whitespace can also
# be used to separate out sections of your file.
#
#
# Example 1: Conversion Job (uvfits output)
# This will produce a uvfits file which:
# * has been averaged to 80kHz fine channels (avg_freq_res)
# * has been averaged to 10 seconds (avg_time_res)
# * has the first and last 80kHz edges flagged (flag_edge_width)
# * will not flag any RFI (no_rfi)
#
obs_id=1104585920, job_type=c, avg_time_res=10, avg_freq_res=80, flag_edge_width=80, output=uvfits, no_rfi=true
#
# Example 2: Conversion Job (CASA measurement set output)
# Same as Example 1 but we will get a CASA measurement set as output, and we will ask for it to be calibrated
obs_id=1104585920, job_type=c, avg_time_res=10, avg_freq_res=80, flag_edge_width=80, output=ms, no_rfi=true, apply_di_cal=true
#
# Example 3: Download Job (metadata files)
# Note: this will download RFI flag files and metafits for use in the
# MWA preprocessing pipelines (cotter or RTS).You probably only want
# to use this if you are an advanced user and are working within one
# of the MWA Collaboration science teams.
#
obs_id=1104585920, job_type=d, download_type=vis_meta
#
# Example 4: Download Job (raw visibility files)
# Note: the raw visibility files are in an MWA specific format. You
# probably only want to use this if you are an advanced user and
# are working within one of the MWA Collaboration science teams.
#
obs_id=1104585920, job_type=d, download_type=vis