Changeset 2431 for trunk/python
- Timestamp:
- 03/14/12 15:15:57 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/scantable.py
r2429 r2431 275 275 Parameters: 276 276 277 name: the name of the outputfile. For format "ASCII"277 name: the name of the outputfile. For format 'ASCII' 278 278 this is the root file name (data in 'name'.txt 279 279 and header in 'name'_header.txt) … … 533 533 534 534 selection: a selector object (default unset the selection), or 535 any combination of "pols", "ifs", "beams", "scans",536 "cycles", "name", "query"535 any combination of 'pols', 'ifs', 'beams', 'scans', 536 'cycles', 'name', 'query' 537 537 538 538 Examples:: … … 1202 1202 end: the end frequency or period to remove 1203 1203 1204 unit: the frequency unit (default "MHz") or ""for1204 unit: the frequency unit (default 'MHz') or '' for 1205 1205 explicit lag channels 1206 1206 … … 1754 1754 # provided your scantable is called scan 1755 1755 selection = selector() 1756 selection.set_name( "ORION*")1756 selection.set_name('ORION*') 1757 1757 selection.set_ifs([1]) 1758 1758 scan.set_selection(selection) … … 1995 1995 The first row of the ascii file must give the column 1996 1996 names and these MUST include columns 1997 "ELEVATION" (degrees) and "FACTOR"(multiply data1997 'ELEVATION' (degrees) and 'FACTOR' (multiply data 1998 1998 by this) somewhere. 1999 1999 The second row must give the data type of the … … 2012 2012 2013 2013 method: Interpolation method when correcting from a table. 2014 Values are "nearest", "linear" (default), "cubic"2015 and "spline"2014 Values are 'nearest', 'linear' (default), 'cubic' 2015 and 'spline' 2016 2016 2017 2017 insitu: if False a new scantable is returned. … … 2047 2047 2048 2048 method: Interpolation method for regridding the spectra. 2049 Choose from "nearest", "linear", "cubic"(default)2050 and "spline"2049 Choose from 'nearest', 'linear', 'cubic' (default) 2050 and 'spline' 2051 2051 2052 2052 insitu: if False a new scantable is returned. … … 2138 2138 2139 2139 method: Interpolation method when correcting from a table. 2140 Values are "nearest", "linear", "cubic"(default)2141 and "spline"2140 Values are 'nearest', 'linear', 'cubic' (default) 2141 and 'spline' 2142 2142 2143 2143 insitu: if False a new scantable is returned. … … 2222 2222 2223 2223 poltype: The new polarisation type. Valid types are: 2224 "linear", "circular", "stokes" and "linpol"2224 'linear', 'circular', 'stokes' and 'linpol' 2225 2225 2226 2226 """
Note:
See TracChangeset
for help on using the changeset viewer.