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