INetworkDataInterpolatorT Interface

Generic interface for getting a value defined on a network. Values can be retrieved - On nodes - On locations using link/reachId + chainage - for a global Id.

Values are interpolated, if possible

Definition

Namespace: DHI.Mike1D.Generic
Assembly: DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public interface INetworkDataInterpolator<T>

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:DHI.Mike1D.Generic.INetworkDataInterpolator`1"]

Remarks

The INetworkDataInterpolatorT are some times being implemented using an INetworkDataT for storing the data, (if the data can be interpolated)

Methods

GetGlobalValue(T) Get global value. Returns false if no global value is defined.
GetGlobalValue(String, T) Get value for the specified id. Returns false if no value is defined for the node id.
GetReachData Get a IReachDataInterpolatorT for the specified link/reachId. Returns null if no valueset exist for the link/reachId.
GetValue(ILocation, T) Get value for the specified location. Returns false if no value is defined around the location.
GetValue(String, T) Get value for the specified node. Returns false if no value is defined for the node id.

See Also