source: trunk/test/parkes-pol.py @ 1432

Last change on this file since 1432 was 1432, checked in by Malte Marquarding, 16 years ago

fix plotting for various pols

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
RevLine 
[744]1#!/usr/bin/env python
2from asap import *
3
[1038]4import os
5outdir = "./output"
6if not os.path.exists(outdir):
7    os.mkdir(outdir)
8
[744]9rcParams['verbose'] = 0
[937]10rcParams['plotter.ganged'] = 0
[744]11
12# Don't plot to the screen...
13del plotter
14plotter = asapplotter(False)
15
16print "Test of Parkes polarimetry (P484)"
17
18data_1665 = scantable('data/parkes-pol.rpf')
19data_1665.rotate_linpolphase(-45)
20data_1665.rotate_xyphase(-2)
21data_1665.set_unit('km/s')
22data_1665.set_freqframe('LSRK')
23
[937]24# Look at the first scan
25selection = selector()
[968]26selection.set_scans(0)
27data_1665.set_selection(selection)
[744]28
[937]29d1_5 = data_1665.copy()
30d1_7 = data_1665.copy()
[744]31
[968]32d1_7.set_restfreqs([1667.3590],'MHz')
33
34# Baseline both
35msk = d1_5.create_mask([-30,-25],[-5,0])
36d1_5.poly_baseline(msk,1)
37msk = d1_7.create_mask([-30,-25],[-5,0])
38d1_7.poly_baseline(msk,1)
39
[937]40# merge the two scans back together into a new scantable
41plotscans = merge(d1_5,d1_7)
42print plotscans.summary()
[968]43del d1_5,d1_7,data_1665
[744]44# Plot the results
45plotter.set_mode('p','s')
46plotter.set_layout(2,1)
47plotter.set_range(-30,0)
[968]48selection.reset()
[1432]49plotter.plot(plotscans)
[968]50selection.set_polarisations(['I','Q', 'U', 'V'])
[938]51plotter.set_selection(selection)
[1432]52plotter.save('output/parkes_iquv.png',dpi=80)
[968]53selection.set_polarisations(['I','Plinear'])
[938]54plotter.set_selection(selection)
[1432]55plotter.save('output/parkes_iplin.png',dpi=80)
[968]56selection.set_polarisations(['RR','LL'])
57plotter.set_selection(selection)
[938]58plotter.save('output/parkes_rrll.png',dpi=80)
[744]59
60print "Parkes-Pol Test successful"
Note: See TracBrowser for help on using the repository browser.