 | CIMUGridPeak Method |
Pick grid peaks.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GridPeak(
string grid,
int nlmt,
CVV v_vx,
CVV v_vy,
CVV v_vz
)
public static void GridPeak(
string grid,
int nlmt,
CVV v_vx,
CVV v_vy,
CVV v_vz
)
Public Shared Sub GridPeak (
grid As String,
nlmt As Integer,
v_vx As CVV,
v_vy As CVV,
v_vz As CVV
)
Public Shared Sub GridPeak (
grid As String,
nlmt As Integer,
v_vx As CVV,
v_vy As CVV,
v_vz As CVV
)
public:
static void GridPeak(
String^ grid,
int nlmt,
CVV^ v_vx,
CVV^ v_vy,
CVV^ v_vz
)
public:
static void GridPeak(
String^ grid,
int nlmt,
CVV^ v_vx,
CVV^ v_vy,
CVV^ v_vz
)
static member GridPeak :
grid : string *
nlmt : int *
v_vx : CVV *
v_vy : CVV *
v_vz : CVV -> unit
static member GridPeak :
grid : string *
nlmt : int *
v_vx : CVV *
v_vy : CVV *
v_vz : CVV -> unit
Parameters
- grid
- Type: SystemString
Grid file name - nlmt
- Type: SystemInt32
Peak test directions (1 to 4) - v_vx
- Type: GeoEngine.Core.GXNetCVV
X of found peaks - v_vy
- Type: GeoEngine.Core.GXNetCVV
Y of found peaks - v_vz
- Type: GeoEngine.Core.GXNetCVV
Z values of found peaks
Remarks
Peak test directions defines how grid peaks are to be found.
For example, with the 1, a grid point will be picked if its
value is greater than it's two neighbors in at least one
direction. Up to 4 directions can be tested.
See Also