 | CIMUGridPeak Method |
Pick grid peaks.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void GridPeak(
CGXNETCore gxNetShared,
string grid,
int nlmt,
CVV v_vx,
CVV v_vy,
CVV v_vz
)
public static void GridPeak(
CGXNETCore gxNetShared,
string grid,
int nlmt,
CVV v_vx,
CVV v_vy,
CVV v_vz
)
Public Shared Sub GridPeak (
gxNetShared As CGXNETCore,
grid As String,
nlmt As Integer,
v_vx As CVV,
v_vy As CVV,
v_vz As CVV
)
Public Shared Sub GridPeak (
gxNetShared As CGXNETCore,
grid As String,
nlmt As Integer,
v_vx As CVV,
v_vy As CVV,
v_vz As CVV
)
public:
static void GridPeak(
CGXNETCore^ gxNetShared,
String^ grid,
int nlmt,
CVV^ v_vx,
CVV^ v_vy,
CVV^ v_vz
)
public:
static void GridPeak(
CGXNETCore^ gxNetShared,
String^ grid,
int nlmt,
CVV^ v_vx,
CVV^ v_vy,
CVV^ v_vz
)
static member GridPeak :
gxNetShared : CGXNETCore *
grid : string *
nlmt : int *
v_vx : CVV *
v_vy : CVV *
v_vz : CVV -> unit
static member GridPeak :
gxNetShared : CGXNETCore *
grid : string *
nlmt : int *
v_vx : CVV *
v_vy : CVV *
v_vz : CVV -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - grid
- Type: SystemString
Grid file name - nlmt
- Type: SystemInt32
Peak test directions (1 to 4) - v_vx
- Type: GeoEngine.Core.GXNetXCVV
X of found peaks - v_vy
- Type: GeoEngine.Core.GXNetXCVV
Y of found peaks - v_vz
- Type: GeoEngine.Core.GXNetXCVV
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