irfpy.vima.table¶
VEX tables
- class irfpy.vima.table.AzimuthalTable[source]¶
Bases:
irfpy.util.sensortable.TableAzimuth angle table, in the IMA bible, section 6.
- version = '1.0'¶
- units = 'deg'¶
- getTable()[source]¶
Get the table for the central values.
Get a table with
nelements, wherenis the number of the data.
- getBound()[source]¶
Get the table for the edge values, without gap.
Get a table with
n+1elements, wherenis the number of the data.The
i-th element ingetTable()should be between theiandi+1-th elements ingetBound().This can be used for
pcolororhistogramfor instance.
- getRange()[source]¶
Return the range, for example FWHM.
Return [2, n] elements.
getRange()[0, :] is the lower bound andgetRange()[1, :] is the upper bound.This can be used for
errorbardrawing orgfactorcalculation for instance.