NetworkDataInterp<T> Class |
NetworkData<T> for details
Namespace: DHI.Mike1D.Generic
[Missing <typeparam name="T"/> documentation for "T:DHI.Mike1D.Generic.NetworkDataInterp`1"]
The NetworkDataInterp<T> type exposes the following members.
Name | Description | |
---|---|---|
![]() | NetworkDataInterp<T> |
Constructor
|
Name | Description | |
---|---|---|
![]() | CanInterpolate |
Flag specifying whether it makes sense to interpolate
in values on a reach.
(Inherited from NetworkData<T>.) |
![]() | ExtrapolationDistance |
Distance from span/gridpoint where extrapolation takes place, i.e., if location chainage
is outside the network value chainage span, but less than ExtrapolationDistance from the span,
then the nearest value is extrapolated. Set to 0 to disable. Default is zero. Can not be negative.
(Inherited from NetworkData<T>.)When CanInterpolate is false, this specifies the distance to a chainage value/span that will return the point/span value, a tolerance value. |
![]() | GlobalValue |
The global value. Used, if nothing better is found.
Setting the global value automatically also sets
HasGlobalValue to true.
(Inherited from NetworkData<T>.) |
![]() | HasGlobalValue |
Defines whether there is a global value, or strictly
speaking, whether to use the global value.
(Inherited from NetworkData<T>.) |
![]() | HasValues |
Flag specifying whether this data has values defined at all
(Inherited from NetworkData<T>.) |
![]() | LocalCount |
Returns the number of locally defined values
(Inherited from NetworkData<T>.) |
![]() | NodeIdValuePairs |
The set of node id's and values defined.
(Inherited from NetworkData<T>.) |
![]() | Quantity |
Quantity stored in network data
(Inherited from NetworkData<T>.) |
![]() | ReachData |
Collection of reach data sets currently active
(Inherited from NetworkData<T>.) |
Name | Description | |
---|---|---|
![]() | AddGlobalReachValue |
Add a value defined for an entire reach.
This will fail if there is already defined values at locations or in spans of this reach.
After successfull addition, values at locations or in spans can not be added.
(Inherited from NetworkData<T>.) |
![]() | AddValue(String, T) |
Add a value for the node identified by nodeId (Inherited from NetworkData<T>.) |
![]() | AddValue(ILocation, T) |
Add a value on the given location.
(Inherited from NetworkData<T>.) |
![]() | AddValue(ILocationSpan, T) |
Add a value defined within the given span.
This corresponds to adding the value at the start and end location of the span.
(Inherited from NetworkData<T>.) |
![]() | AddValue(ILocation, T, Boolean) |
Add a value on the given location.
(Inherited from NetworkData<T>.) |
![]() | Clear |
Delete all localized values. The global value is not deleted.
(Inherited from NetworkData<T>.) |
![]() | ContainsValue(ILocation) |
Check if a local value is specified at the location. Returns false if no value is
defined for the location.
(Inherited from NetworkData<T>.)If more than one value is to be retrieved for the same reach, use the GetReachData(String) first and use that one (for performance). |
![]() | ContainsValue(ILocation, Direction) |
Check if a local value is specified at the location. Returns false if no value is
defined for the location.
(Inherited from NetworkData<T>.)If more than one value is to be retrieved for the same reach, use the GetReachData(String) first and use that one (for performance). |
![]() ![]() | CreateDouble |
Create a NetworkDataInterp<T> of type double,
with the default interpolator
|
![]() ![]() | CreateDoubleArray |
Create a NetworkDataInterp<T> of type double[],
with the default interpolator
|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetGlobalValue(T) |
Get global value. Returns false if no global value is defined.
(Inherited from NetworkData<T>.) |
![]() | GetGlobalValue(String, T) |
Get value for the specified id. Returns false if no value is
defined for the node id.
(Inherited from NetworkData<T>.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetReachData |
Get a NetworkReachDataSet<T> for the reach with the given ID
(Inherited from NetworkData<T>.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetValue(String, T) |
Get value for the specified node. Returns false if no value is
defined for the node id.
(Inherited from NetworkData<T>.) |
![]() | GetValue(ILocation, T) |
Get value for the specified location. Returns false if no value is
defined for the location.
(Inherited from NetworkData<T>.)If more than one value is to be retrieved for the same reach, use the GetReachData(String) first and use that one to get the values (for performance). |
![]() | GetValue(ILocation, T, Boolean) |
Get value for the specified location. Returns false if no value is
defined for the location.
(Inherited from NetworkData<T>.)If more than one value is to be retrieved for the same reach, use the GetReachData(String) first and use that one to get the values (for performance). |
![]() | GetValues |
Get value at the given locations. The locations must have same Location.ID and
be ordred in the list by increasing chainages.
(Inherited from NetworkData<T>.) |
![]() | HasNodeLocalValue |
Returns true if the node has local value defined.
(Inherited from NetworkData<T>.) |
![]() | HasReachLocalValues |
Returns true if the reach has local values defined.
(Inherited from NetworkData<T>.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() | _interpolator |
Interpolator used when CanInterpolate is set
(Inherited from NetworkData<T>.) |
![]() | _nodeValueMap |
Mapping node names to node values
(Inherited from NetworkData<T>.) |
![]() | _reachValueMap |
Mapping reach names to reach data set
(Inherited from NetworkData<T>.) |
Name | Description | |
---|---|---|
![]() | GetValue<T>(ILocation) | Overloaded.
Get a value from the networkData at the given
location. If no value is found at location, the
global value is used. If no global value is defined, an exception
is thrown.
(Defined by GenericExtensions.) |
![]() | GetValue<T>(ILocation, T) | Overloaded.
Get a value from the networkData at the given
location. If no value is found at location, the
global value is used. If no global value is defined, the default value is returned.
(Defined by GenericExtensions.) |
![]() | NetworkValues<T> |
Gives an enumerable that iterates over all point values in the network value set.
(Defined by AbstractNetworkDataExtensions.)It will iterate first over all the nodes, and then over all the reaches and its locations. |
![]() | PointValues<T> |
Gives an iterator that iterates over all point values in the network value set.
(Defined by AbstractNetworkDataExtensions.)It will iterate first over all the nodes, and then over all the reaches and its locations. |