Dfs2UtilReadFloatTimeSeriesByPoint Method |
This method will read all items and timesteps and return the values on
the
xIndex,
yIndex in the grid
as time series.
first dimension is time, second is items.
This method will fail if not all items are of type float.
Namespace: DHI.Generic.MikeZero.DFS.dfs123Assembly: DHI.Generic.MikeZero.DFS (in DHI.Generic.MikeZero.DFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntaxpublic static float[,] ReadFloatTimeSeriesByPoint(
this Dfs2File dfs2File,
int xIndex,
int yIndex
)
<ExtensionAttribute>
Public Shared Function ReadFloatTimeSeriesByPoint (
dfs2File As Dfs2File,
xIndex As Integer,
yIndex As Integer
) As Single(,)
public:
[ExtensionAttribute]
static array<float,2>^ ReadFloatTimeSeriesByPoint(
Dfs2File^ dfs2File,
int xIndex,
int yIndex
)
[<ExtensionAttribute>]
static member ReadFloatTimeSeriesByPoint :
dfs2File : Dfs2File *
xIndex : int *
yIndex : int -> float32[,]
Parameters
- dfs2File
- Type: DHI.Generic.MikeZero.DFS.dfs123Dfs2File
- xIndex
- Type: SystemInt32
- yIndex
- Type: SystemInt32
Return Value
Type:
SingleUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Dfs2File. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also