irfpy.vima.table
¶
VEX tables
- class irfpy.vima.table.AzimuthalTable[source]¶
Bases:
irfpy.util.sensortable.Table
Azimuth 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
n
elements, wheren
is the number of the data.
- getBound()[source]¶
Get the table for the edge values, without gap.
Get a table with
n+1
elements, wheren
is the number of the data.The
i
-th element ingetTable()
should be between thei
andi+1
-th elements ingetBound()
.This can be used for
pcolor
orhistogram
for 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
errorbar
drawing orgfactor
calculation for instance.