 | CIPGetTopoLine Method |
Get topography values for a line.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic void GetTopoLine(
CDB db,
string line,
double x_min,
double x_max,
double x_inc,
CVV vv
)
public void GetTopoLine(
CDB db,
string line,
double x_min,
double x_max,
double x_inc,
CVV vv
)
Public Sub GetTopoLine (
db As CDB,
line As String,
x_min As Double,
x_max As Double,
x_inc As Double,
vv As CVV
)
Public Sub GetTopoLine (
db As CDB,
line As String,
x_min As Double,
x_max As Double,
x_inc As Double,
vv As CVV
)
public:
void GetTopoLine(
CDB^ db,
String^ line,
double x_min,
double x_max,
double x_inc,
CVV^ vv
)
public:
void GetTopoLine(
CDB^ db,
String^ line,
double x_min,
double x_max,
double x_inc,
CVV^ vv
)
member GetTopoLine :
db : CDB *
line : string *
x_min : float *
x_max : float *
x_inc : float *
vv : CVV -> unit
member GetTopoLine :
db : CDB *
line : string *
x_min : float *
x_max : float *
x_inc : float *
vv : CVV -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database to import data to - line
- Type: SystemString
Line name - x_min
- Type: SystemDouble
Starting "X" (station) value (<define>rDUMMY</define> for default) - x_max
- Type: SystemDouble
Ending "X" (station) value (<define>rDUMMY</define> for default) - x_inc
- Type: SystemDouble
"X" increment along the line (<define>rDUMMY</define> for default = half "A" separation) - vv
- Type: GeoEngine.Core.GXNetCVV
Returned topography values
Remarks
If topography info is available, returns values calculated for
the input line. If no topography is available, returned values
will be dummies. Values between actual data are interpolated using
the Akima spline. Ends are extrapolated using the end data points.
See Also