Changeset 2517 for trunk/examples
- Timestamp:
- 05/15/12 15:17:10 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/waterfall.py
r1415 r2517 10 10 scan = scantable("../test/data/tid-t002.rpf", average=False) 11 11 print scan 12 12 13 # select only one IF/Pol/Beam 13 sel = selector() 14 sel.set_ifs(0) 15 sel.set_polarisations(0) 16 sel.set_beams(0) 17 scan.set_selection(sel) 14 scan.set_selection(ifs=0, beams=0, pols=0) 18 15 19 16 # plot in GHz … … 50 47 xyplotter.ylabel("Obs. Time") 51 48 52 #xyplotter.savefig("test.ps",orientation="landscape")49 xyplotter.savefig("test.png",orientation="landscape")
Note:
See TracChangeset
for help on using the changeset viewer.