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, where n is the number of the data.

getBound()[source]

Get the table for the edge values, without gap.

Get a table with n+1 elements, where n is the number of the data.

The i-th element in getTable() should be between the i and i+1-th elements in getBound().

This can be used for pcolor or histogram for instance.

getRange()[source]

Return the range, for example FWHM.

Return [2, n] elements. getRange() [0, :] is the lower bound and getRange() [1, :] is the upper bound.

This can be used for errorbar drawing or gfactor calculation for instance.