Changeset 2761 for trunk/python
- Timestamp:
- 02/06/13 13:13:20 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/scantable.py
r2754 r2761 255 255 self._fill([filename], unit, average, opts) 256 256 elif os.path.isfile(filename): 257 self._fill([filename], unit, average) 257 opts={'nro': {}} 258 nrokeys=['freqref'] 259 for key in nrokeys: 260 if key in args.keys(): 261 opts['nro'][key] = args[key] 262 self._fill([filename], unit, average, opts) 258 263 # only apply to new data not "copy constructor" 259 264 self.parallactify(parallactify)
Note:
See TracChangeset
for help on using the changeset viewer.