from __future__ import absolute_import import os import shutil import numpy as np # get is_CASA6 and is_python3 from casatasks.private.casa_transition import * if is_CASA6: from casatools import ms, table from casatasks import casalog from .mstools import write_history else: from taskinit import casalog from taskinit import mstool as ms from taskinit import tbtool as table from mstools import write_history def importfitsidi(fitsidifile,vis,constobsid=None,scanreindexgap_s=None,specframe=None): """Convert FITS-IDI visibility file into a CASA visibility file (MS). Keyword arguments: fitsidifile -- Name(s) of input FITS IDI file(s) default: None; example='3C273XC1.IDI' or ['3C273XC1.IDI1', '3C273XC1.IDI2'] vis -- Name of output visibility file (MS) default: None; example: vis='3C273XC1.ms' constobsid -- If True a constant obs id == 0 of is given to all input files default = False (new obs id for each input file) scanreindexgap_s -- if > 0., a new scan is started whenever the gap between two integrations is > the given value (seconds) or when a new field starts or when the ARRAY_ID changes. default = 0. (no reindexing) specframe -- this frame will be used to set the spectral reference frame for all spectral windows in the output MS default = GEO (geocentric), other options: TOPO, LSRK, BARY NOTE: if specframe is set to TOPO, the reference location will be taken from the Observatories table in the CASA data repository for the given name of the observatory. You can edit that table and add new rows. """ #Python script try: casalog.origin('importfitsidi') casalog.post("") myms = ms() mytb = table() if type(specframe)==str and not specframe=='': myspecframe=specframe.upper() else: myspecframe='GEO' refframes = {'REST': 0, 'LSRK': 1, 'LSRD': 2, 'BARY': 3, 'GEO': 4, 'TOPO': 5} if myspecframe not in refframes: raise ValueError('Value '+myspecframe+' of parameter specframe invalid. Possible values are REST, LSRK, LSRD, BARY, GEO, TOPO') if(type(fitsidifile)==str): casalog.post('### Reading file '+fitsidifile, 'INFO') myms.fromfitsidi(vis,fitsidifile) myms.close() elif(type(fitsidifile)==list): clist = fitsidifile casalog.post('### Reading file '+clist[0], 'INFO') myms.fromfitsidi(vis,clist[0]) myms.close() clist.pop(0) tname = vis+'_importfitsidi_tmp_' shutil.rmtree(tname, ignore_errors=True) for fidifile in clist: casalog.post('### Reading file '+fidifile, 'INFO') myms.fromfitsidi(tname,fidifile) myms.close() myms.open(vis, nomodify=False) myms.concatenate(msfile=tname, freqtol='', dirtol='') myms.close() shutil.rmtree(tname, ignore_errors=True) else: raise ValueError('Parameter fitsidifile should be of type str or list') if (constobsid): mytb.open(vis+'/OBSERVATION', nomodify=False) nobs = mytb.nrows() cando = True if nobs>1: casalog.post('Trying to keep obsid constant == 0 for all input files', 'INFO') # check if all observations are from the same telescope; if not warn and leave as is tels = mytb.getcol('TELESCOPE_NAME') for i in range(1,nobs): if tels[i]!=tels[0]: cando = False if cando: # get min and max time and write them into the first row; casalog.post('Adjusting OBSERVATION table', 'INFO') timeranges = mytb.getcol('TIME_RANGE') ttr = timeranges.transpose() newmin = min(ttr[0]) newmax = max(ttr[1]) mytb.putcell('TIME_RANGE', 0, [newmin,newmax]) # delete the other rows mytb.removerows(list(range(1,nobs))) else: casalog.post('The input files stem from different telescopes. Need to give different obs id.', 'WARN') mytb.close() if cando: # give the same obs id == 0 to the entire output MS casalog.post('Setting observation ID of all integrations to 0', 'INFO') mytb.open(vis, nomodify=False) for i in range(0, mytb.nrows()): mytb.putcell('OBSERVATION_ID', i, 0) mytb.close() else: # don't want constant obs id if(type(fitsidifile)==list and len(fitsidifile)>1): casalog.post('Incrementing observation ID for each input file ...', 'INFO') if (scanreindexgap_s > 0.): # reindex the scan column mytb.open(vis, nomodify=False) times = mytb.getcol('TIME') fields = mytb.getcol('FIELD_ID') arrayids = mytb.getcol('ARRAY_ID') scannumbers = mytb.getcol('SCAN_NUMBER') timesorted = np.argsort(np.array(times)) scannumber = 0 scannumber_field = len(fields) * [0] prevtime = len(fields) * [0] prevarrayid = arrayids[timesorted[0]] for i in range(0,mytb.nrows()): ii = timesorted[i] timenow = times[ii] fieldnow = fields[ii] arrayidnow = arrayids[ii] if (timenow-prevtime[fieldnow] > scanreindexgap_s) \ or (arrayidnow != prevarrayid): scannumber += 1 scannumber_field[fieldnow] = scannumber casalog.post("Starting new scan "+str(scannumber)+" at "+str(timenow)\ +", field "+str(fieldnow)+", array_id "+str(arrayidnow), 'INFO') scannumbers[ii] = scannumber_field[fieldnow] prevtime[fieldnow] = timenow prevarrayid = arrayidnow mytb.putcol('SCAN_NUMBER', scannumbers) mytb.close() if myspecframe in refframes: casalog.post('Setting reference frame for all spectral windows to '+myspecframe, 'INFO') if myspecframe == 'TOPO': casalog.post('NOTE: reference position for TOPO frame will be the observatory location', 'WARN') mytb.open(vis+'/SPECTRAL_WINDOW', nomodify=False) refcol = mytb.getcol('MEAS_FREQ_REF') refcol = [refframes[myspecframe]]*len(refcol) mytb.putcol('MEAS_FREQ_REF', refcol) mytb.close() # write history try: param_names = importfitsidi.__code__.co_varnames[:importfitsidi.__code__.co_argcount] if is_python3: vars = locals( ) param_vals = [vars[p] for p in param_names] else: param_vals = [eval(p) for p in param_names] write_history(myms, vis, 'importfitsidi', param_names, param_vals, casalog) except Exception as instance: casalog.post("*** Error \'%s\' updating HISTORY" % instance, 'WARN') finally: shutil.rmtree(vis+'_importfitsidi_tmp_', ignore_errors=True)