 | CPGUGridPeak Method |
Pick grid peaks.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GridPeak(
string grid,
int nlmt,
CVV vv_x,
CVV vv_y,
CVV vv_z
)
public static void GridPeak(
string grid,
int nlmt,
CVV vv_x,
CVV vv_y,
CVV vv_z
)
Public Shared Sub GridPeak (
grid As String,
nlmt As Integer,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV
)
Public Shared Sub GridPeak (
grid As String,
nlmt As Integer,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV
)
public:
static void GridPeak(
String^ grid,
int nlmt,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z
)
public:
static void GridPeak(
String^ grid,
int nlmt,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z
)
static member GridPeak :
grid : string *
nlmt : int *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV -> unit
static member GridPeak :
grid : string *
nlmt : int *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV -> unit
Parameters
- grid
- Type: SystemString
Grid file name - nlmt
- Type: SystemInt32
<define>BLAKEY_TEST</define> - vv_x
- Type: GeoEngine.Core.GXNetCVV
X of found peaks - vv_y
- Type: GeoEngine.Core.GXNetCVV
Y of found peaks - vv_z
- Type: GeoEngine.Core.GXNetCVV
Z values of found peaks
Remarks
Blakey test limit defines how grid peaks are to be found.
For example, with the <define>BLAKEY_TEST_ONESIDE</define>, a grid
point will be picked if its grid value is greater than
the value of one or more of its four neighouring points.
See Also