source: trunk/test/tid.py @ 950

Last change on this file since 950 was 950, checked in by mar637, 18 years ago

re-enebled insitu freq_align

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 902 bytes
Line 
1#!/usr/bin/env python
2from asap import *
3
4rcParams['verbose'] = 0
5
6rcParams['plotter.ganged'] = 0
7# Don't plot to the screen...
8del plotter
9plotter = asapplotter(False)
10
11print "Test of Tidbinbilla"
12
13# Create the quotient spectra
14data = scantable('data/tid-t002.rpf')
15q = data.auto_quotient()
16# Set the restfreq for each IF
17q.set_restfreqs(freqs= [23694.4700e6,23722.6336e6])
18q.set_unit('km/s')
19q.set_freqframe('LSRK')
20# Align frequencies
21q.freq_align()
22# Recalculate the az/el
23q.recalc_azel()
24# Correct for gain curve and opacity
25q.gain_el()
26q.opacity(0.075)
27# Average in time
28av = q.average_time()
29# Baseline
30msk=av.create_mask([-70,-50],[40,60])
31av.poly_baseline(msk,1)
32plotter.set_mode('i','s')
33plotter.plot(av)
34plotter.save('output/tid.png', dpi=80)
35
36# Do some random processing, just to test these functions
37av.smooth('gauss',5)
38av.scale(1.05)
39av.add(0.05)
40
41print "Tid test finished successfully"
Note: See TracBrowser for help on using the repository browser.