 | CIPConvertUBCIP2DToGrid Method |
Convert a UBC 2D model to a regular grid.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void ConvertUBCIP2DToGrid(
CGXNETCore gxNetShared,
string file,
CPG pg,
CVV vv_x,
CVV vv_z,
double x,
double z,
double cx,
double cz,
int reciprocal
)
public static void ConvertUBCIP2DToGrid(
CGXNETCore gxNetShared,
string file,
CPG pg,
CVV vv_x,
CVV vv_z,
double x,
double z,
double cx,
double cz,
int reciprocal
)
Public Shared Sub ConvertUBCIP2DToGrid (
gxNetShared As CGXNETCore,
file As String,
pg As CPG,
vv_x As CVV,
vv_z As CVV,
x As Double,
z As Double,
cx As Double,
cz As Double,
reciprocal As Integer
)
Public Shared Sub ConvertUBCIP2DToGrid (
gxNetShared As CGXNETCore,
file As String,
pg As CPG,
vv_x As CVV,
vv_z As CVV,
x As Double,
z As Double,
cx As Double,
cz As Double,
reciprocal As Integer
)
public:
static void ConvertUBCIP2DToGrid(
CGXNETCore^ gxNetShared,
String^ file,
CPG^ pg,
CVV^ vv_x,
CVV^ vv_z,
double x,
double z,
double cx,
double cz,
int reciprocal
)
public:
static void ConvertUBCIP2DToGrid(
CGXNETCore^ gxNetShared,
String^ file,
CPG^ pg,
CVV^ vv_x,
CVV^ vv_z,
double x,
double z,
double cx,
double cz,
int reciprocal
)
static member ConvertUBCIP2DToGrid :
gxNetShared : CGXNETCore *
file : string *
pg : CPG *
vv_x : CVV *
vv_z : CVV *
x : float *
z : float *
cx : float *
cz : float *
reciprocal : int -> unit
static member ConvertUBCIP2DToGrid :
gxNetShared : CGXNETCore *
file : string *
pg : CPG *
vv_x : CVV *
vv_z : CVV *
x : float *
z : float *
cx : float *
cz : float *
reciprocal : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - file
- Type: SystemString
Output grid file name - pg
- Type: GeoEngine.Core.GXNetXCPG
Model data - vv_x
- Type: GeoEngine.Core.GXNetXCVV
Model cells sizes (input) - vv_z
- Type: GeoEngine.Core.GXNetXCVV
Model cells sizes (input) - x
- Type: SystemDouble
Top-left corner X - z
- Type: SystemDouble
Top-left corner Z - cx
- Type: SystemDouble
Output grid cell size in X - cz
- Type: SystemDouble
Output grid cell size in Z - reciprocal
- Type: SystemInt32
Output reciprocal of values (0:No, 1:Yes) for resistivity?
Remarks
Uses TIN gridding to sample the model.
By setting the final value, a resistivity grid can be
created from conductivity data.
See Also