Changes between Version 4 and Version 5 of BetaTestingInstructions


Ignore:
Timestamp:
04/11/06 14:07:50 (18 years ago)
Author:
Malte Marquarding
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BetaTestingInstructions

    v4 v5  
    2828ASAP> sel.set_ifs(1)
    2929ASAP> myscan.set_selection(sel)
     30ASAP> myscan.summary()
     31ASAP> myscan.set_selection()
     32ASAP> myscan.summary()
    3033}}}
    31 This selection is praticularly important for fitting as the fitter can only process one spectrum at a time. ASAP1 didn't allow slices so that wasn't a problem. Now you have to be careful that you have the correct selection. Use scanatble.nrow() to see how many spectra are in your selection. If there are more than one, the fitter uses the first one.
    32 The same seelction object can be used to restrict plotting plotter.set_selection().
     34This selection is praticularly important for fitting as the fitter can only process one spectrum at a time. ASAP1 didn't allow slices so that wasn't a problem. Now you have to be careful that you have the correct selection. Use '''scanatble.nrow()''' to see how many spectra are in your selection. If there are more than one, the fitter uses the first one.
     35The same selection object can be used to restrict plotting '''plotter.set_selection()'''.
     36To unset the selection use '''set_selection''' without arguments.
    3337
    3438=== plotting ===
     
    5357This should suit almost all observations. If not let me know.
    5458
     59=== flagging ===
     60ASAP1 only support flagging of whole spectra. ASAP2 allows channel based flagging
     61{{{
     62# flag channels 100 to 200 in IF 1, leave IF0 untouched
     63mask = myscan.create_mask([100,200])
     64sel.set_ifs(1)
     65myscan.set_selection(sel)
     66myscan.flag_spectrum(mask)
     67# reste the selection
     68myscan.set_selection()
     69}}}
     70
     71===  New functions ===
     72
     73* '''scantable.convert_pol()''' - convert (manipulate) the data between 'linear', 'circular' and 'stokes'
     74* '''scantable.set_dirframe()''' - convert to a new Direction reference frame e.g. 'GALACTIC', 'B1950'
     75
    5576=== Command Summary ===
    5677||ASAP1||ASAP2||