Click or drag to resize

CIMUGetZPeaksVV Method

Same as GetZVV_IMU, but find the closest peak value to the input locations, and return the peak value and peak value location.

Namespace:  GeoEngine.Core.GXNet
Assembly:  geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntax
public static void GetZPeaksVV(
	CIMG img,
	CVV vv_x,
	CVV vv_y,
	CVV vv_z
)

public static void GetZPeaksVV(
	CIMG img,
	CVV vv_x,
	CVV vv_y,
	CVV vv_z
)

Parameters

img
Type: GeoEngine.Core.GXNetCIMG
Input grid
vv_x
Type: GeoEngine.Core.GXNetCVV
X VV
vv_y
Type: GeoEngine.Core.GXNetCVV
Y VV
vv_z
Type: GeoEngine.Core.GXNetCVV
Z VV filled with values (set to be same size as X, Y)
Remarks
The returned locations will always be a grid point location; no interpolation is performed when locating the peaks. A simple search is done of all neighbouring points from the starting point, and once no neighbours can be located with a higher value, the search stops.
See Also