 | CVOXSampleCDIToTopography Method |
Sample a voxel at fixed elevations along a path in a CDI database, and output them to an array channel, deleting leading dummy values, and
writing the elevation of the first non-dummy item to a topography channel.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SampleCDIToTopography(
CDB db,
int line,
int x_ch,
int y_ch,
CVV zvv,
int mode,
string out_ch,
string topo_ch
)
public void SampleCDIToTopography(
CDB db,
int line,
int x_ch,
int y_ch,
CVV zvv,
int mode,
string out_ch,
string topo_ch
)
Public Sub SampleCDIToTopography (
db As CDB,
line As Integer,
x_ch As Integer,
y_ch As Integer,
zvv As CVV,
mode As Integer,
out_ch As String,
topo_ch As String
)
Public Sub SampleCDIToTopography (
db As CDB,
line As Integer,
x_ch As Integer,
y_ch As Integer,
zvv As CVV,
mode As Integer,
out_ch As String,
topo_ch As String
)
public:
void SampleCDIToTopography(
CDB^ db,
int line,
int x_ch,
int y_ch,
CVV^ zvv,
int mode,
String^ out_ch,
String^ topo_ch
)
public:
void SampleCDIToTopography(
CDB^ db,
int line,
int x_ch,
int y_ch,
CVV^ zvv,
int mode,
String^ out_ch,
String^ topo_ch
)
member SampleCDIToTopography :
db : CDB *
line : int *
x_ch : int *
y_ch : int *
zvv : CVV *
mode : int *
out_ch : string *
topo_ch : string -> unit
member SampleCDIToTopography :
db : CDB *
line : int *
x_ch : int *
y_ch : int *
zvv : CVV *
mode : int *
out_ch : string *
topo_ch : string -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetXCDB
CDI Database handle - line
- Type: SystemInt32
Line handle - x_ch
- Type: SystemInt32
X channel handle - y_ch
- Type: SystemInt32
Y channel handle - zvv
- Type: GeoEngine.Core.GXNetXCVV
Z values to sample at each X, Y - mode
- Type: SystemInt32
Interpolation mode: 0 - linear, 1 - nearest - out_ch
- Type: SystemString
Output data array channel name - topo_ch
- Type: SystemString
Output topography channel name
See Also