 | CVVURemoveDup Method |
Remove/average duplicate sample pairs from a database.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void RemoveDup(
CVV data_vv,
CVV sample_vv,
int output
)
public static void RemoveDup(
CVV data_vv,
CVV sample_vv,
int output
)
Public Shared Sub RemoveDup (
data_vv As CVV,
sample_vv As CVV,
output As Integer
)
Public Shared Sub RemoveDup (
data_vv As CVV,
sample_vv As CVV,
output As Integer
)
public:
static void RemoveDup(
CVV^ data_vv,
CVV^ sample_vv,
int output
)
public:
static void RemoveDup(
CVV^ data_vv,
CVV^ sample_vv,
int output
)
static member RemoveDup :
data_vv : CVV *
sample_vv : CVV *
output : int -> unit
static member RemoveDup :
data_vv : CVV *
sample_vv : CVV *
output : int -> unit
Parameters
- data_vv
- Type: GeoEngine.Core.GXNetCVV
Data VV - sample_vv
- Type: GeoEngine.Core.GXNetCVV
Sample Type VV - output
- Type: SystemInt32
<define>VV_DUP</define>
Remarks
Created for duplicate sample handling in CHIMERA. On input,
a numeric or text VV containing data values, and a sample type VV.
Sample pairs have types "1" and "2". This routine searches for
types in order "1 2 1 2", and replaces the pair of values in the
data VV according to the <define>VV_DUP</define> value.
Results for samples out of order, for unmatched pairs, or when the
sample type does not equal "1" or "2" remain unchanged.
See Also