First Lab Test

You can find here result of the Logs/FirstLabTest of the complete acquisition chain, processed offline with Boa.

On 2006 July the 10th, 39 MBFits files were produced (project name O-PP.C-NNNN-YYYY, scans #9399-9443), 10 MBFits are invalid, either because they produced an CFITSIO error (#9417,9397,9396,9393) or do not contained

The remaining scans are listed below :

Filename

Date

Source Name

Scan Mode

# Subscans

Scan Type

Comments

/APEX-9442-O-PP.C-NNNN-YYYY

2006-07-10T16:56:33

test

RASTER

1

ONOFF

/APEX-9441-O-PP.C-NNNN-YYYY

2006-07-10T16:51:30

test

OTF

1

MAP

/APEX-9440-O-PP.C-NNNN-YYYY

2006-07-10T16:44:02

test

OTF

1

MAP

/APEX-9439-O-PP.C-NNNN-YYYY

2006-07-10T16:36:42

test

OTF

1

MAP

/APEX-9438-O-PP.C-NNNN-YYYY

2006-07-10T16:22:42

test

OTF

1

MAP

/APEX-9437-O-PP.C-NNNN-YYYY

2006-07-10T16:19:53

test

RASTER

1

ONOFF

/APEX-9436-O-PP.C-NNNN-YYYY

2006-07-10T16:12:45

test

RASTER

1

ONOFF

/APEX-9435-O-PP.C-NNNN-YYYY

2006-07-10T16:10:08

test

RASTER

1

ONOFF

/APEX-9434-O-PP.C-NNNN-YYYY

2006-07-10T16:00:46

test

OTF

11

MAP

/APEX-9433-O-PP.C-NNNN-YYYY

2006-07-10T15:57:23

test

RASTER

1

ONOFF

/APEX-9432-O-PP.C-NNNN-YYYY

2006-07-10T15:55:34

test

RASTER

3

FOCUS-Z

/APEX-9431-O-PP.C-NNNN-YYYY

2006-07-10T15:52:02

SKYDIP

RASTER

5

SKYDIP

/APEX-9430-O-PP.C-NNNN-YYYY

2006-07-10T15:49:37

SKYDIP

RASTER

5

SKYDIP

/APEX-9429-O-PP.C-NNNN-YYYY

2006-07-10T15:47:56

test

OTF

2

POINT

/APEX-9428-O-PP.C-NNNN-YYYY

2006-07-10T15:45:31

test

RASTER

1

ONOFF

/APEX-9427-O-PP.C-NNNN-YYYY

2006-07-10T15:43:50

test

RASTER

2

CAL

/APEX-9426-O-PP.C-NNNN-YYYY

2006-07-10T15:42:04

test

RASTER

2

CAL

/APEX-9425-O-PP.C-NNNN-YYYY

2006-07-10T15:40:04

test

RASTER

1

ONOFF

/APEX-9423-O-PP.C-NNNN-YYYY

2006-07-10T15:07:59

test

RASTER

2

CAL

/APEX-9420-O-PP.C-NNNN-YYYY

2006-07-10T14:52:51

test

RASTER

1

CAL

/APEX-9419-O-PP.C-NNNN-YYYY

2006-07-10T14:51:30

test

RASTER

1

CAL

/APEX-9418-O-PP.C-NNNN-YYYY

2006-07-10T14:49:33

test

RASTER

1

ONOFF

/APEX-9413-O-PP.C-NNNN-YYYY

2006-07-10T14:12:20

bla

RASTER

1

ONOFF

/APEX-9411-O-PP.C-NNNN-YYYY

2006-07-10T14:06:24

bla

RASTER

1

CAL

/APEX-9402-O-PP.C-NNNN-YYYY

2006-07-10T13:09:05

SKYDIP

RASTER

5

SKYDIP

/APEX-9401-O-PP.C-NNNN-YYYY

2006-07-10T12:02:36

Uranus

RASTER

2

CAL

/APEX-9400-O-PP.C-NNNN-YYYY

2006-07-10T12:01:22

Uranus

RASTER

3

CAL

/APEX-9399-O-PP.C-NNNN-YYYY

2006-07-10T11:59:30

Uranus

RASTER

1

ONOFF

For each scan a set of plots have been produced using Boa the following script:

   1 import os
   2 from boa import *
   3 
   4 execfile(os.environ['BOA_HOME_BOA']+'/BoaStart.py')
   5 BogliConfig.point['size'] = 2
   6 
   7 indir('path to fits files')
   8 ils()
   9 
  10 # Set up a file to output the table seen on this page
  11 fileList = file('fileList.tab','w')
  12 fileList.write('|| Filename || Date || Source Name || Scan Mode || # Subscans || Scan Type || Comments ||\n')
  13 
  14 for scan in BoaDir.CurrentList:
  15     if not scan['status']:
  16         continue
  17 
  18     filename = scan['filename']
  19 
  20     # Fill the output file
  21     outString = '|| ["/'+filename+'"] '
  22     toPrint=['Date','Object','ScanMode','NSubscans','ScanType']
  23     for item in toPrint:
  24         outString = outString + "|| " + str(scan[item])
  25     fileList.write(outString+" || || \n")
  26 
  27     # read the file
  28     try:
  29         read(filename)
  30     except:
  31         messages.error(filename+" failed to read")
  32         continue
  33 
  34     # make the plots
  35     op("fig/"+filename+'_azel.png/PNG')
  36     azel(style='p')
  37     close()
  38     op("fig/"+filename+'_azelo.png/PNG')
  39     azelo(style='p')
  40     close()
  41     op("fig/"+filename+'_signal.png/PNG')
  42     signal(arange(1,11),style='p')
  43     close()
  44 
  45 fileList.close()

boawiki: Logs/FirstLabTest (last edited 2009-12-17 15:40:33 by localhost)