 | CVOXKrig Method |
A more compact and extensible form of LogGridPointsZEx_VOX.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static CVOX Krig(
CGXNETCore gxNetShared,
string name,
double cell_size,
int type,
CVV vv_x,
CVV vv_y,
CVV vv_z,
CVV vv_d,
CIPJ ipj,
CREG reg
)
public static CVOX Krig(
CGXNETCore gxNetShared,
string name,
double cell_size,
int type,
CVV vv_x,
CVV vv_y,
CVV vv_z,
CVV vv_d,
CIPJ ipj,
CREG reg
)
Public Shared Function Krig (
gxNetShared As CGXNETCore,
name As String,
cell_size As Double,
type As Integer,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV,
vv_d As CVV,
ipj As CIPJ,
reg As CREG
) As CVOX
Public Shared Function Krig (
gxNetShared As CGXNETCore,
name As String,
cell_size As Double,
type As Integer,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV,
vv_d As CVV,
ipj As CIPJ,
reg As CREG
) As CVOX
public:
static CVOX^ Krig(
CGXNETCore^ gxNetShared,
String^ name,
double cell_size,
int type,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z,
CVV^ vv_d,
CIPJ^ ipj,
CREG^ reg
)
public:
static CVOX^ Krig(
CGXNETCore^ gxNetShared,
String^ name,
double cell_size,
int type,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z,
CVV^ vv_d,
CIPJ^ ipj,
CREG^ reg
)
static member Krig :
gxNetShared : CGXNETCore *
name : string *
cell_size : float *
type : int *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV *
vv_d : CVV *
ipj : CIPJ *
reg : CREG -> CVOX
static member Krig :
gxNetShared : CGXNETCore *
name : string *
cell_size : float *
type : int *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV *
vv_d : CVV *
ipj : CIPJ *
reg : CREG -> CVOX
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - name
- Type: SystemString
Name of output VOX - cell_size
- Type: SystemDouble
Cell size (DUMMY for default) - type
- Type: SystemInt32
<define>GS_TYPES</define> - vv_x
- Type: GeoEngine.Core.GXNetXCVV
X VV - vv_y
- Type: GeoEngine.Core.GXNetXCVV
Y VV - vv_z
- Type: GeoEngine.Core.GXNetXCVV
Z VV - vv_d
- Type: GeoEngine.Core.GXNetXCVV
Data VV - ipj
- Type: GeoEngine.Core.GXNetXCIPJ
- reg
- Type: GeoEngine.Core.GXNetXCREG
Return Value
Type:
CVOXVOX Object
Remarks
Optional Parameters.
If these values are not set in the REG, then default parameters will be used.
ERROR_VOXEL: Name of error VOX ("" for none)
CELLSIZEZ: Z Cell size string (space delimited, "" for default)
RADIUS_MIN: Minimum Search Radius (REAL) (Default = 4) (Blanking Distance)
RADIUS_MAX: Maximum Search Radius (REAL) (Default = 16)
SEARCH_MIN: Minimum Search Points (INT) (Default = 16)
SEARCH_MAX: Maximum Search Points (INT) (Default = 32)
VARIOGRAM_ONLY: Set to 1 to calculate the variogram only (INT) (Default = 0)
MODEL: Variogram Model number 1-power, 2-sperical, 3-gaussian, 4-exponential (INT) (Default = 2)
POWER: Power (Default = DUMMY)
SLOPE: Slope (REAL) (if input is DUMMY, value calculated and set on return)
RANGE: Range (REAL) (if input is DUMMY, value calculated and set on return)
SILL : Sill (REAL) (if input is DUMMY, value calculated and set on return)
STRIKE: Strike (REAL) (Default = 0)
DIP: Dip (REAL) (Default = 90)
PLUNGE: Plunge (REAL) (Default = 0)
STRIKE WEIGHT: Along-Strike Weight (REAL) (Default = 1)
DIP_WEIGHT: Down-Dip Weight (REAL) (Default = 1)
LOG_OPT: One of <define>VOX_GRID_LOGOPT</define> (Default = 0)
MIN_LOG: Log Minimum (REAL) (Default = 1)
MIN_X: Minimum X (REAL) (default = DUMMY to determine from the data. If input, nearest lt. or eq. multiple of cell size chosen)
MAX_X: Maximum X (REAL) (default = DUMMY to determine from the data. If input, nearest gt. or eq. multiple of cell size chosen)
MIN_Y: Minimum Y (REAL) (default = DUMMY to determine from the data. If input, nearest lt. or eq. external multiple of cell size chosen)
MAX_Y: Maximum Y (REAL) (default = DUMMY to determine from the data. If input, nearest gt. or eq. multiple of cell size chosen)
MIN_Z: Minimum Z (REAL) (default = DUMMY to determine from the data. If input, nearest lt. or eq. multiple of cell size chosen)
MAX_Z: Maximum Z (REAL) (default = DUMMY to determine from the data. If input, nearest gt. or eq. multiple of cell size chosen)A more compact and extensible form of LogGridPointsZEx_VOX. Only the most
basic parameters are entered directly. Optional parameters are passed via a REG object.
See Also