Changeset 780 for trunk/python
- Timestamp:
- 12/07/05 14:18:09 (19 years ago)
- Location:
- trunk/python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r737 r780 268 268 269 269 __date__ = '$Date$'.split()[1] 270 __version__ = '1.2 '270 __version__ = '1.2.1' 271 271 272 272 if rcParams['verbose']: … … 340 340 poly_baseline - fit a polynomial baseline to all Beams/IFs/Pols 341 341 auto_poly_baseline - automatically fit a polynomial baseline 342 recalc_azel - recalculate azimuth and elevation based on 343 the pointing 342 344 gain_el - apply gain-elevation correction 343 345 opacity - apply opacity correction -
trunk/python/scantable.py
r762 r780 1372 1372 else: raise 1373 1373 1374 def recalc_azel(self): 1375 """ 1376 Recalculate the azimuth and elevation for each position. 1377 Parameters: 1378 none 1379 Example: 1380 """ 1381 varlist = vars() 1382 self._recalc_azel() 1383 self._add_history("recalc_azel", varlist) 1384 print_log() 1385 return 1386 1374 1387 def __add__(self, other): 1375 1388 varlist = vars() … … 1386 1399 print_log() 1387 1400 return s 1388 1389 1401 1390 1402 def __sub__(self, other):
Note:
See TracChangeset
for help on using the changeset viewer.