 | CDUExportXYZ Method |
Export XYZdata from a database to an XYZ file.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void ExportXYZ(
CDB db,
string data,
string templ
)
public static void ExportXYZ(
CDB db,
string data,
string templ
)
Public Shared Sub ExportXYZ (
db As CDB,
data As String,
templ As String
)
Public Shared Sub ExportXYZ (
db As CDB,
data As String,
templ As String
)
public:
static void ExportXYZ(
CDB^ db,
String^ data,
String^ templ
)
public:
static void ExportXYZ(
CDB^ db,
String^ data,
String^ templ
)
static member ExportXYZ :
db : CDB *
data : string *
templ : string -> unit
static member ExportXYZ :
db : CDB *
data : string *
templ : string -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - data
- Type: SystemString
Export data file name - templ
- Type: SystemString
Export template name
Remarks
1. The export template can be in the local directory or the GEOSOFT
directory. The import data file must include the path if it is not
in the local directory.
2. Both the import template and data file must exist.
3. Sample Template file
[EXPORT XYZ]
EXPORT CHAN {,FORMAT} {,WIDTH} {,DECIMAL}
WRITEDUMMY YES
CLIPMAP YES
MAXPOINTS 1000
INCREMENT .5
4. This can be used to export a group, but the group must be the
currently displayed line, and only that group will be exported.
See Also