Changeset 378


Ignore:
Timestamp:
02/08/05 09:24:22 (19 years ago)
Author:
mar637
Message:
  • tracking plotter changes (set_layout,save)
  • minor cosmetics
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/__init__.py

    r301 r378  
    218218if rcParams['useplotter']:
    219219    if os.environ.has_key('DISPLAY'):
    220         print "Initialising plotter..."
     220        print "Initialising asapplotter with the name 'plotter' ..."
    221221        import asapplotter
    222222        plotter = asapplotter.asapplotter()
    223223    else:
    224         print "No $DISPLAY set. Disabling plotter\n"
     224        print "No $DISPLAY set. Disabling plotter.\n"
    225225
    226226#from numarray ones,zeros
     227
    227228
    228229__date__ = '$Date$'
     
    314315                              called 'plotter'
    315316            plot            - plot a (list of) scantable
     317            save            - save the plot to a file ('png' ,'ps' or 'eps')
    316318            set_mode        - set the state of the plotter, i.e.
    317319                              what is to be plotted 'colour stacked'
     
    322324            set_ordinate    - specify a user label for the ordinate
    323325            set_abcissa     - specify a user label for the abcissa
     326            set_layout      - specify the multi-panel layout (rows,cols)
    324327           
    325328    [Reading files]
     
    355358
    356359print """Welcome to ASAP - the ATNF Single Dish Analysis Package
    357 This is a testing pre-release v0.2
     360This is a testing pre-release %s
    358361
    359362Please report any bugs to:
    360363Malte.Marquarding@csiro.au
    361364
    362 [NOTE: ASAP is 0-based]
     365[IMPORTANT: ASAP is 0-based]
    363366Type commands() to get a list of all available ASAP commands.
    364 """
     367""" % (__version__)
Note: See TracChangeset for help on using the changeset viewer.