Click or drag to resize

IDfsAxisCurveLinearD3 Properties

The IDfsAxisCurveLinearD3 type exposes the following members.

Properties
  NameDescription
Public propertyAxisType
Type of spatial axis. Depending on this type, the class can be cast to one of the sub-types.
(Inherited from IDfsSpatialAxis.)
Public propertyAxisUnit
Unit of the axis coordinate values.
(Inherited from IDfsSpatialAxis.)
Public propertyDimension
Axis dimension
(Inherited from IDfsSpatialAxis.)
Public propertySizeOfData
Size of data, number of data values.
(Inherited from IDfsSpatialAxis.)
Public propertyXCoordinates
X coordinates of the grid.

It is of size (XCount+1) X (YCount+1) X (ZCount+1).

To get coordinates at index (i,j,k), you can do:

XCoordinates[i + j*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.XCount" />+1) + k*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.XCount" />+1)*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.YCount" />+1)]

Public propertyXCount
Number of data points in the x direction
Public propertyYCoordinates
Y coordinates of the grid.

It is of size (XCount+1) X (YCount+1) X (ZCount+1).

To get coordinates at index (i,j,k), you can do:

YCoordinates[i + j*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.XCount" />+1) + k*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.XCount" />+1)*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.YCount" />+1)]

Public propertyYCount
Number of data points in the Y direction
Public propertyZCoordinates
Z coordinates of the grid.

It is of size (XCount+1) X (YCount+1) X (ZCount+1).

To get coordinates at index (i,j,k), you can do:

ZCoordinates[i + j*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.XCount" />+1) + k*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.XCount" />+1)*(<see cref="P:DHI.Generic.MikeZero.DFS.IDfsAxisCurveLinearD3.YCount" />+1)]

Public propertyZCount
Number of data points in the Z direction
Top
See Also