source: branches/alma/test/file-io.py @ 1757

Last change on this file since 1757 was 1757, checked in by Kana Sugimoto, 14 years ago

New Development: Yes

JIRA Issue: Yes (CAS-2211)

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: ASAP 3.0.0 interface changes

Test Programs:

Put in Release Notes: Yes

Module(s): all the CASA sd tools and tasks are affected.

Description: Merged ATNF-ASAP 3.0.0 developments to CASA (alma) branch.

Note you also need to update casa/code/atnf.


  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 736 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
11print "Test of file i/o"
12rc('scantable', storage='disk')
13data = scantable('data/tid-t002.rpf')
14del data
15rc('scantable',storage='memory')
16data = scantable('data/tid-t002.rpf')
17
18data.save('output/test.asap',overwrite=True)
19data.save('output/testascii',format='ASCII',overwrite=True)
20data.save('output/test.sdfits',format='SDFITS',overwrite=True)
21data.save('output/testfits',format='FITS',overwrite=True)
22data.save('output/testclass',format='CLASS',overwrite=True)
23
24data2 = scantable('output/test.sdfits')
25data3 = scantable('output/test.asap')
26
27print "File i/o test finished successfully"
Note: See TracBrowser for help on using the repository browser.