Opened 16 years ago
Closed 16 years ago
#171 closed defect (wontfix)
ASAP processing of Mopra OTF data
| Reported by: | Owned by: | Malte Marquarding | |
|---|---|---|---|
| Priority: | normal | Milestone: | ASAP 2.4 |
| Component: | General | Version: | 2.0 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
I would like to use ASAP to regrid the spectal axis on Mopra OTF files which have been processed by livedata into SDFITS. These are large SDFITS files, typically >100 MB. Trying to load them using the scantable() command leads to a python crash. Next I tried
r=reader('2009-06-21_0041-M300.sdfits')
scans=r.read()
print scans
but this only reads one integration (and only one IF it seems). I don't mind reading one integration at a time and setting up a loop to work through the file, but I don't see a way to do this (and I would like to output a single SDFITS file at the end).
Tony
Change History (2)
comment:1 by , 16 years ago
| Owner: | changed from to |
|---|---|
| Status: | new → assigned |
comment:2 by , 16 years ago
| Resolution: | → wontfix |
|---|---|
| Status: | assigned → closed |
Since there is now further communication I assume the suggestion worked.

Hi Tony,
The reader stuff shouldn't really be used (anymore). Use
average=Falseto prevent averaging of 'cycles' as your a doing OTF. Trys = scantable('2009-06-21_0041-M300.sdfits', average=False)