 | CVVURemoveXYDupIndex Method |
Remove duplicate samples with the same (X, Y) and update index.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic static void RemoveXYDupIndex(
CGXNETCore gxNetShared,
CVV xvv,
CVV yvv,
CVV index_vv
)
public static void RemoveXYDupIndex(
CGXNETCore gxNetShared,
CVV xvv,
CVV yvv,
CVV index_vv
)
Public Shared Sub RemoveXYDupIndex (
gxNetShared As CGXNETCore,
xvv As CVV,
yvv As CVV,
index_vv As CVV
)
Public Shared Sub RemoveXYDupIndex (
gxNetShared As CGXNETCore,
xvv As CVV,
yvv As CVV,
index_vv As CVV
)
public:
static void RemoveXYDupIndex(
CGXNETCore^ gxNetShared,
CVV^ xvv,
CVV^ yvv,
CVV^ index_vv
)
public:
static void RemoveXYDupIndex(
CGXNETCore^ gxNetShared,
CVV^ xvv,
CVV^ yvv,
CVV^ index_vv
)
static member RemoveXYDupIndex :
gxNetShared : CGXNETCore *
xvv : CVV *
yvv : CVV *
index_vv : CVV -> unit
static member RemoveXYDupIndex :
gxNetShared : CGXNETCore *
xvv : CVV *
yvv : CVV *
index_vv : CVV -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - xvv
- Type: GeoEngine.Core.GXNetXCVV
X VV - yvv
- Type: GeoEngine.Core.GXNetXCVV
Y VV - index_vv
- Type: GeoEngine.Core.GXNetXCVV
Index VV
Remarks
Searches for duplicated (X, Y) locations and removes the
duplicates (can be more than just a pair). The Index VV is
updated accordingly .i.e if (X,Y) location of Index[0] == Index[1]
Index[1] is removed.
See Also