You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At present, an ad-hoc approach is used for obtaining measures data. However, there is a degree of complexity in the Measures definition that may need to be handled in order to correctly support Measures conversion.
Quoting from measures/TableMeasures/TableMeasDesc.h
// The TableMeasDesc class hierarchy contains classes for defining each// component of the Measures to be contained in column. A// <linkto class="TableMeasOffsetDesc">TableMeasOffsetDesc</linkto> is used// to specify the offset component, a// <linkto class="TableMeasRefDesc">TableMeasRefDesc</linkto> to set up// the reference code component and a// <linkto class="TableMeasValueDesc">TableMeasValueDesc</linkto> names the// column used as the main Measure column through which the// Measure column is subsequently accessed.
// <synopsis>// This class assists in the definition of the offset component of a// TableMeasDesc// in the TableMeasures system. Four possibilities exist for specifying the// handling of measure offsets in a Measure column. These are://// <ul>// <li> an offset is not used// <li> all measures in the column have the same offset// <li> a unique (and probably different) offset is stored for each row// <li> a unique offset is stored in each array element per (Array)column// row// </ul>
// TableMeasRefDesc is a class for setting up the MeasRef// component of a TableMeasDesc in the TableMeasures system. With the aid// of a// TableMeasRefDesc the following possibilities for defining a Measure// column's reference exist:// <ul>// <li> a fixed, non-variable, reference code, where all Measures in a// column are to have the same reference code.// <li> a unique (and probably different) reference code stored in each row.// <li> a unique reference code stored in each array element per// (Array)column row.// </ul>
From a cursory read of measures/TableMeasures/TableMeasValueDesc.h the TableMeasValueDesc column does not appear to vary per row or element (it may be the column actually containing the actual data).
Then, there may be a 4 x 3 cartesian product of possible interactions between the MeasRefs and MeasOffsets. At the Python layer, this can probably be achieved through broadcasting arrays against each other. This is probably reasonably easy to handle for small columns, but may be harder for larger data columns that can not reasonably be expected to fit in memory.
The text was updated successfully, but these errors were encountered:
At present, an ad-hoc approach is used for obtaining measures data. However, there is a degree of complexity in the Measures definition that may need to be handled in order to correctly support Measures conversion.
Quoting from
measures/TableMeasures/TableMeasDesc.h
Quoting
measures/TablesMeasures/TableMeasOffsetDesc.h
Quoting
measures/TablesMeasures/TableMeasRefDesc.h
From a cursory read of
measures/TableMeasures/TableMeasValueDesc.h
theTableMeasValueDesc
column does not appear to vary per row or element (it may be the column actually containing the actual data).Then, there may be a 4 x 3 cartesian product of possible interactions between the
MeasRefs
andMeasOffsets
. At the Python layer, this can probably be achieved through broadcasting arrays against each other. This is probably reasonably easy to handle for small columns, but may be harder for larger data columns that can not reasonably be expected to fit in memory.The text was updated successfully, but these errors were encountered: