 | CVVURemoveXYDup Method |
Remove/average duplicate samples with the same (X, Y).
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void RemoveXYDup(
CVV xvv,
CVV yvv,
CVV zvv,
int xy_dup
)
public static void RemoveXYDup(
CVV xvv,
CVV yvv,
CVV zvv,
int xy_dup
)
Public Shared Sub RemoveXYDup (
xvv As CVV,
yvv As CVV,
zvv As CVV,
xy_dup As Integer
)
Public Shared Sub RemoveXYDup (
xvv As CVV,
yvv As CVV,
zvv As CVV,
xy_dup As Integer
)
public:
static void RemoveXYDup(
CVV^ xvv,
CVV^ yvv,
CVV^ zvv,
int xy_dup
)
public:
static void RemoveXYDup(
CVV^ xvv,
CVV^ yvv,
CVV^ zvv,
int xy_dup
)
static member RemoveXYDup :
xvv : CVV *
yvv : CVV *
zvv : CVV *
xy_dup : int -> unit
static member RemoveXYDup :
xvv : CVV *
yvv : CVV *
zvv : CVV *
xy_dup : int -> unit
Parameters
- xvv
- Type: GeoEngine.Core.GXNetCVV
X VV - yvv
- Type: GeoEngine.Core.GXNetCVV
Y VV - zvv
- Type: GeoEngine.Core.GXNetCVV
(optional) Z VV - xy_dup
- Type: SystemInt32
<define>VV_XYDUP</define>
Remarks
Searches for duplicated (X, Y) locations and removes the
duplicates (can be more than just a pair). The "Z" values,
if defined, are treated according to the value of <define>VV_XYDUP</define>.
The returned VVs are shortened to the new length, without
duplicates.
The Z VV can be set to NULL on input, in which case it is ignored.
See Also