 | CSEMPLOTImportBIN Method |
Import blocked binary or archive ASCII data
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void ImportBIN(
CDB db,
string data,
string templ,
string line,
int flight,
double date
)
public static void ImportBIN(
CDB db,
string data,
string templ,
string line,
int flight,
double date
)
Public Shared Sub ImportBIN (
db As CDB,
data As String,
templ As String,
line As String,
flight As Integer,
date As Double
)
Public Shared Sub ImportBIN (
db As CDB,
data As String,
templ As String,
line As String,
flight As Integer,
date As Double
)
public:
static void ImportBIN(
CDB^ db,
String^ data,
String^ templ,
String^ line,
int flight,
double date
)
public:
static void ImportBIN(
CDB^ db,
String^ data,
String^ templ,
String^ line,
int flight,
double date
)
static member ImportBIN :
db : CDB *
data : string *
templ : string *
line : string *
flight : int *
date : float -> unit
static member ImportBIN :
db : CDB *
data : string *
templ : string *
line : string *
flight : int *
date : float -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - data
- Type: SystemString
Import data file name - templ
- Type: SystemString
Import template name - line
- Type: SystemString
Optional Line name (see note 3.) - flight
- Type: SystemInt32
Optional Flight number - date
- Type: SystemDouble
Optional date
Remarks
This wrapper is for SEMPLOT, and does not require the import licence.
1. Binary import templates have extension .I2 by convention. See
BINARY.I2 for a description of the template format.
Archive import templates have extension .I3 by convention. See
ARCHIVE.I3 for a description of the template format.
2. Both the import template and data file must exist.
3. If a line already exists in the database, a new version is created
unless a line name is passed in. In this case, the specified name
is used and the imported channels on the previous line will be
destroyed.
See Also