Click or drag to resize

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

Namespace:  DHI.Mike1D.Generic
Assembly:  DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public interface INetworkDataInterpolator<T>

Type Parameters

T

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

The INetworkDataInterpolatorT type exposes the following members.

Methods
  NameDescription
Public methodGetGlobalValue(T)
Get global value. Returns false if no global value is defined.
Public methodGetGlobalValue(String, T)
Get value for the specified id. Returns false if no value is defined for the node id.
Public methodGetReachData
Public methodGetValue(String, T)
Get value for the specified node. Returns false if no value is defined for the node id.
Public methodGetValue(ILocation, T)
Get value for the specified location. Returns false if no value is defined around the location.
Top
Remarks
The INetworkDataInterpolatorT are some times being implemented using an INetworkDataT for storing the data, (if the data can be interpolated)
See Also