Changeset 1151


Ignore:
Timestamp:
08/16/06 15:29:05 (18 years ago)
Author:
mar637
Message:

added more commands. put commands through pager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/__init__.py

    r1144 r1151  
    400400            set_restfreqs   - set a list of rest frequencies
    401401            flag            - flag selected channels in the data
    402             save            - save the scantable to disk as either 'ASAP'
    403                               or 'SDFITS'
     402            save            - save the scantable to disk as either 'ASAP',
     403                              'SDFITS' or 'ASCII'
    404404            nbeam,nif,nchan,npol - the number of beams/IFs/Pols/Chans
    405405            nscan           - the number of scans in the scantable
     
    464464            merge           - merge a list of scantables
    465465
     466     [Line Catalog]
     467        linecatalog              - a linecatalog wrapper, taking an ASCII or
     468                                   internal format table
     469            summary              - print a summary of the current selection
     470            set_name             - select a subset by name pattern, e.g. '*OH*'
     471            set_strength_limits  - select a subset by line strength limits
     472            set_frequency_limits - select a subset by frequency limits
     473            reset                - unset all selections
     474            save                 - save the current subset to a table (internal
     475                                   format)
     476            get_row              - get the name and frequency from a specific
     477                                   row in the table
    466478     [Fitting]
    467479        fitter
     
    486498                              called 'plotter'
    487499            plot            - plot a scantable
     500            plot_lines      - plot a linecatalog overlay
    488501            save            - save the plot to a file ('png' ,'ps' or 'eps')
    489502            set_mode        - set the state of the plotter, i.e.
     
    500513            set_linestyles  - specify a set of linestyles to use if only
    501514                              using one color
     515            set_font        - set general font properties, e.g. 'family'
    502516            set_histogram   - plot in historam style
    503517            set_mask        - set a plotting mask for a specific polarization
     
    538552
    539553            """
    540         print x
     554        if rcParams['verbose']:
     555            try:
     556                from IPython.genutils import page as pager
     557            except ImportError:
     558                from pydoc import pager
     559            pager(x)
     560        else:
     561            print x
    541562        return
    542563
Note: See TracChangeset for help on using the changeset viewer.