 | CIP.GetTopoLine Method |
Get topography values for a line.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.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.GXNetX.CDB
Database to import data to - line
- Type: System.String
Line name - x_min
- Type: System.Double
Starting "X" (station) value (<define>rDUMMY</define> for default) - x_max
- Type: System.Double
Ending "X" (station) value (<define>rDUMMY</define> for default) - x_inc
- Type: System.Double
"X" increment along the line (<define>rDUMMY</define> for default = half "A" separation) - vv
- Type: GeoEngine.Core.GXNetX.CVV
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