- Timestamp:
- 02/08/05 09:24:22 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r301 r378 218 218 if rcParams['useplotter']: 219 219 if os.environ.has_key('DISPLAY'): 220 print "Initialising plotter..."220 print "Initialising asapplotter with the name 'plotter' ..." 221 221 import asapplotter 222 222 plotter = asapplotter.asapplotter() 223 223 else: 224 print "No $DISPLAY set. Disabling plotter \n"224 print "No $DISPLAY set. Disabling plotter.\n" 225 225 226 226 #from numarray ones,zeros 227 227 228 228 229 __date__ = '$Date$' … … 314 315 called 'plotter' 315 316 plot - plot a (list of) scantable 317 save - save the plot to a file ('png' ,'ps' or 'eps') 316 318 set_mode - set the state of the plotter, i.e. 317 319 what is to be plotted 'colour stacked' … … 322 324 set_ordinate - specify a user label for the ordinate 323 325 set_abcissa - specify a user label for the abcissa 326 set_layout - specify the multi-panel layout (rows,cols) 324 327 325 328 [Reading files] … … 355 358 356 359 print """Welcome to ASAP - the ATNF Single Dish Analysis Package 357 This is a testing pre-release v0.2360 This is a testing pre-release %s 358 361 359 362 Please report any bugs to: 360 363 Malte.Marquarding@csiro.au 361 364 362 [ NOTE: ASAP is 0-based]365 [IMPORTANT: ASAP is 0-based] 363 366 Type commands() to get a list of all available ASAP commands. 364 """ 367 """ % (__version__)
Note:
See TracChangeset
for help on using the changeset viewer.