Click or drag to resize

CVOXTINGridDB Method

TINGridDB_VOX TIN-Gridding, DB version, 3D.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
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
)

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)
Remarks
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.
See Also