source: branches/Release2.1.2/test/tid.py

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

have to check if output dir is there

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