 | CIMUStatWindow Method |
Calculate grid statistics in a window
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void StatWindow(
CGXNETCore gxNetShared,
CIMG img,
double min_x,
double min_y,
double max_x,
double max_y,
int max,
CST st
)
public static void StatWindow(
CGXNETCore gxNetShared,
CIMG img,
double min_x,
double min_y,
double max_x,
double max_y,
int max,
CST st
)
Public Shared Sub StatWindow (
gxNetShared As CGXNETCore,
img As CIMG,
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double,
max As Integer,
st As CST
)
Public Shared Sub StatWindow (
gxNetShared As CGXNETCore,
img As CIMG,
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double,
max As Integer,
st As CST
)
public:
static void StatWindow(
CGXNETCore^ gxNetShared,
CIMG^ img,
double min_x,
double min_y,
double max_x,
double max_y,
int max,
CST^ st
)
public:
static void StatWindow(
CGXNETCore^ gxNetShared,
CIMG^ img,
double min_x,
double min_y,
double max_x,
double max_y,
int max,
CST^ st
)
static member StatWindow :
gxNetShared : CGXNETCore *
img : CIMG *
min_x : float *
min_y : float *
max_x : float *
max_y : float *
max : int *
st : CST -> unit
static member StatWindow :
gxNetShared : CGXNETCore *
img : CIMG *
min_x : float *
min_y : float *
max_x : float *
max_y : float *
max : int *
st : CST -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - img
- Type: GeoEngine.Core.GXNetXCIMG
Name of the grid to get stats from - min_x
- Type: SystemDouble
Min X window - min_y
- Type: SystemDouble
Min Y window - max_x
- Type: SystemDouble
Max X window - max_y
- Type: SystemDouble
Max Y window - max
- Type: SystemInt32
Maximum values needed, 0 for all - st
- Type: GeoEngine.Core.GXNetXCST
ST object, stats are accumulated
Remarks
The maximum values needed will beused to
decimate the sampling of the grid in order to
improve performance. 100000 is often a good
number when absolute precision is not
required.
See Also