| Last change
 on this file since 1679 was             1267, checked in by mar637, 19 years ago | 
        
          | 
Merge from Release2.1 branch
 | 
        
          | 
              
Property                 svn:eol-style
 set to                 native
Property                 svn:executable
 set to                 *
Property                 svn:keywords
 set to                 Author Date Id Revision | 
        
          | File size:
            619 bytes | 
      
      
| Line |  | 
|---|
| 1 | #!/usr/bin/env python | 
|---|
| 2 | from asap import * | 
|---|
| 3 |  | 
|---|
| 4 | import os | 
|---|
| 5 | outdir = "./output" | 
|---|
| 6 | if not os.path.exists(outdir): | 
|---|
| 7 | os.mkdir(outdir) | 
|---|
| 8 |  | 
|---|
| 9 | rcParams['verbose'] = 0 | 
|---|
| 10 |  | 
|---|
| 11 | print "Test of file i/o" | 
|---|
| 12 | rc('scantable', storage='disk') | 
|---|
| 13 | data = scantable('data/tid-t002.rpf') | 
|---|
| 14 | del data | 
|---|
| 15 | rc('scantable',storage='memory') | 
|---|
| 16 | data = scantable('data/tid-t002.rpf') | 
|---|
| 17 |  | 
|---|
| 18 | data.save('output/test.asap',overwrite=True) | 
|---|
| 19 | data.save('output/test.ascii',format='ASCII',overwrite=True) | 
|---|
| 20 | data.save('output/test.sdfits',format='SDFITS',overwrite=True) | 
|---|
| 21 |  | 
|---|
| 22 | data2 = scantable('output/test.sdfits') | 
|---|
| 23 | data3 = scantable('output/test.asap') | 
|---|
| 24 |  | 
|---|
| 25 | print "File i/o test finished successfully" | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.