Changes in trunk/python/opacity.py [1826:1927]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/opacity.py
r1826 r1927 6 6 from asap.asapfitter import fitter 7 7 from asap.selector import selector 8 from asap.parameters import rcParams9 8 from asap._asap import atmosphere 10 9 … … 51 50 52 51 def get_opacities(self, freq, elevation=None): 53 """Get the opacity value(s) for the fiven frequency(ies).52 """Get the opacity value(s) for the given frequency(ies). 54 53 If no elevation is given the opacities for the zenith are returned. 55 54 If an elevation is specified refraction is also taken into account. … … 148 147 is corrupted (Mopra). If set to 'False', an opacity value 149 148 per polarisation is returned. 150 t ksy: The sky temperature (default 300.0K). This might149 tsky: The sky temperature (default 300.0K). This might 151 150 be read from the data in the future. 152 151 plot: Plot each fit (airmass vs. Tsys). Default is 'False' 153 152 """ 154 rcsave = rcParams['verbose']155 rcParams['verbose'] = False156 153 if plot: 157 154 from matplotlib import pylab … … 222 219 223 220 scan.set_selection(basesel) 224 rcParams['verbose'] = rcsave225 221 if plot: 226 222 pylab.close()
Note:
See TracChangeset
for help on using the changeset viewer.