Hi,
The following code
ts = pt.table(ms, readonly=False)
desc = ts.getcoldesc('DATA')
desc['name'] = 'COPY'
ts.addcols(desc)
generates a Segmentation fault (core dumped), raising the error reported in the title of the issue.
I used this command a number of times in the past with different instruments, but now with MeerKAT data it does not work.
For completeness, the description of the column (the desc variable) is
{'valueType': 'complex',
'dataManagerType': 'DyscoStMan',
'dataManagerGroup': 'DyscoData',
'option': 5,
'maxlen': 0,
'comment': 'The data column',
'ndim': 2,
'shape': array([873, 4]),
'_c_order': True,
'keywords': {'UNIT': 'Jy'},
'name': 'COPY'}
What is the problem and how to solve it? Thanks.
Hi,
The following code
generates a
Segmentation fault (core dumped), raising the error reported in the title of the issue.I used this command a number of times in the past with different instruments, but now with MeerKAT data it does not work.
For completeness, the description of the column (the
descvariable) isWhat is the problem and how to solve it? Thanks.