source: tags/asap-4.1.0/python/__init__.py @ 2662

Last change on this file since 2662 was 2662, checked in by Malte Marquarding, 12 years ago

merge from trunk into release candidate

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
RevLine 
[100]1"""
2This is the ATNF Single Dish Analysis package.
3
4"""
[1824]5import os
6import sys
[226]7
[1824]8# first import!
9from asap.env import *
10# second import!
[1835]11from asap.parameters import *
12# third import
[1824]13from asap.logging import *
14from asap.utils import *
15# explicitly import 'hidden' functions
16from asap.utils import _n_bools, _is_sequence_or_number, _to_list
[1472]17
[1824]18if is_ipython():
19    from ipysupport import *
[226]20
[1859]21# Only use rcParams['verbose'] in standard asap cli mode
22# not in scripts or casapy
23if not is_asap_cli():
24    rcParams['verbose'] = False
[226]25
[1824]26setup_env()
[226]27
[1824]28# anything which uses matplotlib has to be imported after this!!!
[928]29if rcParams['useplotter']:
[1295]30    try:
[1423]31        gui = os.environ.has_key('DISPLAY') and rcParams['plotter.gui']
32        if gui:
[1422]33            import matplotlib
[1824]34            if 'matplotlib.backends' not in matplotlib.sys.modules:
35                matplotlib.use("TkAgg")
36        from asapplotter import asapplotter
[1691]37        from matplotlib import pylab
[1422]38        xyplotter = pylab
[1423]39        plotter = asapplotter(gui)
[1295]40    except ImportError:
[1861]41        asaplog.push( "Matplotlib not installed. No plotting available")
42        asaplog.post('WARN')
[285]43
[1824]44from selector import selector
45from asapmath import *
46from scantable import scantable
47from linecatalog import linecatalog
48from asaplinefind import linefinder
49from simplelinefinder import simplelinefinder
50from interactivemask import interactivemask
51from asapfitter import fitter
52from opacity import skydip
53from opacity import model as opacity_model
[2593]54from asapgrid import asapgrid, asapgrid2
[2613]55from edgemarker import edgemarker
[2587]56#from plotter2 import plotter2
[2649]57from sbseparator import sbseparator
[1875]58from _asap import srctype
[1824]59
[574]60__date__ = '$Date: 2012-10-10 03:53:53 +0000 (Wed, 10 Oct 2012) $'.split()[1]
[2662]61__version__  = '4.1.0'
[1824]62__revision__ = get_revision()
[100]63
[706]64def welcome():
65    return """Welcome to ASAP v%s (%s) - the ATNF Spectral Analysis Package
[100]66
[1035]67Please report any bugs via:
[1378]68http://svn.atnf.csiro.au/trac/asap/simpleticket
[100]69
[378]70[IMPORTANT: ASAP is 0-based]
[1824]71Type commands() to get a list of all available ASAP commands.""" % (__version__,
72                                                                    __date__)
Note: See TracBrowser for help on using the repository browser.