  | CVVURemoveDup Method  | 
 Remove/average duplicate sample pairs from a database.
 
    Namespace: 
   Geosoft.Desktop.GXNetX
    Assembly:
   geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic static void RemoveDup(
	CGXNETCore gxNetShared,
	CVV data_vv,
	CVV sample_vv,
	int output
)
public static void RemoveDup(
	CGXNETCore gxNetShared,
	CVV data_vv,
	CVV sample_vv,
	int output
)
Public Shared Sub RemoveDup ( 
	gxNetShared As CGXNETCore,
	data_vv As CVV,
	sample_vv As CVV,
	output As Integer
)
Public Shared Sub RemoveDup ( 
	gxNetShared As CGXNETCore,
	data_vv As CVV,
	sample_vv As CVV,
	output As Integer
)
public:
static void RemoveDup(
	CGXNETCore^ gxNetShared, 
	CVV^ data_vv, 
	CVV^ sample_vv, 
	int output
)
public:
static void RemoveDup(
	CGXNETCore^ gxNetShared, 
	CVV^ data_vv, 
	CVV^ sample_vv, 
	int output
)
static member RemoveDup : 
        gxNetShared : CGXNETCore * 
        data_vv : CVV * 
        sample_vv : CVV * 
        output : int -> unit 
static member RemoveDup : 
        gxNetShared : CGXNETCore * 
        data_vv : CVV * 
        sample_vv : CVV * 
        output : int -> unit 
Parameters
- gxNetShared
 - Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - data_vv
 - Type: GeoEngine.Core.GXNetXCVV
Data VV - sample_vv
 - Type: GeoEngine.Core.GXNetXCVV
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