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