Changeset 2290 for trunk/python
- Timestamp:
- 09/08/11 20:03:01 (13 years ago)
- Location:
- trunk/python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapplotter.py
r2277 r2290 1425 1425 ssum=self._data._list_header() 1426 1426 # Print Observation header to the upper-left corner of plot 1427 headstr=[ssum[ssum.find('Observer:'):ssum.find('Flux Unit:')]] 1428 headstr.append(ssum[ssum.find('Beams:'):ssum.find('Observer:')] 1429 +ssum[ssum.find('Rest Freqs:'):ssum.find('Abcissa:')]) 1427 headstr=[ssum[0:ssum.find('Obs. Type:')]] 1428 headstr.append(ssum[ssum.find('Obs. Type:'):ssum.find('Flux Unit:')]) 1430 1429 if extrastr != '': 1431 1430 headstr[0]=extrastr+'\n'+headstr[0] … … 1450 1449 asaplog.push("----------------\n Plot Summary\n----------------") 1451 1450 asaplog.push(extrastr) 1452 asaplog.push(ssum[ssum.find('Beams:'):ssum.find('Selection:')]\ 1453 #+ selstr + ssum[ssum.find('Scan Source'):]) 1451 asaplog.push(ssum[0:ssum.find('Selection:')]\ 1454 1452 + selstr) 1455 1453 self._headtext['string'] = headstr -
trunk/python/scantable.py
r2286 r2290 462 462 filename = "" 463 463 Scantable._summary(self, filename) 464 # info = Scantable._summary(self, filename) 464 465 # return page(info) 465 466
Note:
See TracChangeset
for help on using the changeset viewer.