Click or drag to resize
CVOXTINGridDB Method
TINGridDB_VOX TIN-Gridding, DB version, 3D.

Available since Oasis montaj version: 8.5
License: Available to anyone with an Oasis Montaj license.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Notes
Designed for data in array channels position vertically at single XY locations. Creates a TIN using the XY locations and uses the coefficients for the top layer on each layer below to make it efficient. REG Parameters: X0, Y0, Z0, DX, DY, DZ: Voxel origin, and cell sizes (required) NX, NY, NZ: Voxel dimensions. DZ and NZ are used only if the input cell sizes VV is of zero length.
Syntax
public static void TINGridDB(
	CGXNETCore gxNetShared,
	string voxel,
	CDB db,
	int x,
	int y,
	int z,
	int data,
	int method,
	CVV z_cell,
	CREG reg
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
voxel
Type: SystemString
Output voxel name
db
Type: GeoEngine.Core.GXNetXCDB
Database
x
Type: SystemInt32
X Channel [READONLY]
y
Type: SystemInt32
Y Channel [READONLY]
z
Type: SystemInt32
Z Channel [READONLY]
data
Type: SystemInt32
Data Channel [READONLY]
method
Type: SystemInt32
Gridding method (0: Linear, 1: Natural Neighbour, 2: Nearest Neightbour
z_cell
Type: GeoEngine.Core.GXNetXCVV
Z Cell sizes (bottom to top)
reg
Type: GeoEngine.Core.GXNetXCREG
Parameters (see above)
See Also