 | CDUIntersectOld Method |
Use existing intersection table and re-calculate miss-ties.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void IntersectOld(
CDB db,
int x_chan,
int y_chan,
int z_chan,
string in_file,
string out_file
)
public static void IntersectOld(
CDB db,
int x_chan,
int y_chan,
int z_chan,
string in_file,
string out_file
)
Public Shared Sub IntersectOld (
db As CDB,
x_chan As Integer,
y_chan As Integer,
z_chan As Integer,
in_file As String,
out_file As String
)
Public Shared Sub IntersectOld (
db As CDB,
x_chan As Integer,
y_chan As Integer,
z_chan As Integer,
in_file As String,
out_file As String
)
public:
static void IntersectOld(
CDB^ db,
int x_chan,
int y_chan,
int z_chan,
String^ in_file,
String^ out_file
)
public:
static void IntersectOld(
CDB^ db,
int x_chan,
int y_chan,
int z_chan,
String^ in_file,
String^ out_file
)
static member IntersectOld :
db : CDB *
x_chan : int *
y_chan : int *
z_chan : int *
in_file : string *
out_file : string -> unit
static member IntersectOld :
db : CDB *
x_chan : int *
y_chan : int *
z_chan : int *
in_file : string *
out_file : string -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - x_chan
- Type: SystemInt32
X Channel [<define>DB_LOCK_READONLY</define>] - y_chan
- Type: SystemInt32
Y Channel [<define>DB_LOCK_READONLY</define>] - z_chan
- Type: SystemInt32
Z Channel [<define>DB_LOCK_READONLY</define>] - in_file
- Type: SystemString
Input Table file name - out_file
- Type: SystemString
Output Table file Name
Remarks
Reads intersection information from an existing intersect
table and looks up the values at the intersections for the
input Z channel. This makes it unnecessary to re-calculate
the intersections every time if you want to determine
miss-ties using different Z channels, or the same Z channel
after processing levelling corrections. Existing intersections
whose locations do not exist in the database are ignored.
See Also