- Timestamp:
- 01/15/09 12:10:40 (16 years ago)
- Location:
- trunk/python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r1434 r1471 434 434 get_restfreqs - get the current list of rest frequencies 435 435 set_restfreqs - set a list of rest frequencies 436 shift_refpix - shift the reference pixel of the IFs 436 shift_refpix - shift the reference pixel of the IFs 437 set_spectrum - overwrite the spectrum for a given row 438 get_spectrum - retrieve the spectrum for a given 439 get_mask - retrieve the mask for a given 437 440 flag - flag selected channels in the data 438 441 lag_flag - flag specified frequency in the data -
trunk/python/scantable.py
r1443 r1471 277 277 return info 278 278 279 def get_spectrum(self, rownow): 280 """Return the spectrum for the current row in the scantable as a list. 281 Parameters: 282 rowno: the row number to retrieve the spectrum from 283 """ 284 return self._getspectrum(rowno) 285 286 def get_mask(self, rowno): 287 """Return the mask for the current row in the scantable as a list. 288 Parameters: 289 rowno: the row number to retrieve the mask from 290 """ 291 return self._getmask(rowno) 292 293 def set_spectrum(self, spec, rowno): 294 """Return the spectrum for the current row in the scantable as a list. 295 Parameters: 296 spec: the spectrum 297 rowno: the row number to set the spectrum for 298 """ 299 assert(len(spec) == self.nchan()) 300 return self._setspectrum(spec, rowno) 279 301 280 302 def get_selection(self): … … 685 707 to remove 686 708 width: the width of the frequency to remove, to remove a 687 range of frequencies aroun gthe centre.709 range of frequencies around the centre. 688 710 unit: the frequency unit (default "GHz") 689 711 Notes:
Note:
See TracChangeset
for help on using the changeset viewer.