source: tags/Release2.1.0b/test/file-io.py @ 1257

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

added test for disk based scantables

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