Gets the number of measurements in the collection.
Returns the measurement that associated to the the specified raw data item or undefined
if the collection contains no such measurement.
The raw data item from which the measurement should be returned.
Returns the measurements that are associated to the the specified inspection plan part or undefined
if the collection contains no such measurement.
The inspection plan part to search measurements for.
Returns the measurement value that is associated to the specified RawDataItem
or undefined
if the collection contains no such measurement value.
The raw data item from which the measurement value should be returned.
Returns the measurement values that are associated to the the specified inspection plan characteristic or undefined
if the collection contains no such measurement.
The inspection plan characteristic to search values for.
Returns an iter over all measurements.
Generated using TypeDoc
A collection of
Measurements
. It offers a wide range of functions to improve its accessibility. You can iterate over the collection like the following:const measurementCollection = piweb.data.getMeasurementCollection(); for (let measurement of measurementCollection) { ... }