|
TemporalOutlierOperation Enumeration
|
Enumeration that defines how to handle
TemporalMeasurement
values that are outside of the defined Lag/Lead time bounds.
Namespace: GSF.TimeSeriesAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.205-beta
Syntax public enum TemporalOutlierOperation
Public Enumeration TemporalOutlierOperation
public enum class TemporalOutlierOperation
type TemporalOutlierOperation
GSF.TimeSeries.TemporalOutlierOperation = function();
GSF.TimeSeries.TemporalOutlierOperation.createEnum('GSF.TimeSeries.TemporalOutlierOperation', false);
Members Member name | Value | Description |
---|
PublishValueAsNan | 0 |
Measurement value is set to NaN if it is outside of the
defined time bounds. This is the default behavior.
|
PublishWithBadState | 1 |
Measurement value is preserved if it is outside of the time bounds, but the state
flags are set to OutlierState which defaults to
SuspectTime.
|
See Also