 | CIMUGridStat Method |
Reports statistics contained in a grid header.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GridStat(
string grid,
ref int type,
ref int xelem,
ref int yelem,
ref double xsep,
ref double ysep,
ref int kx,
ref double x_orig,
ref double y_orig,
ref double rot,
ref double base,
ref double mult
)
public static void GridStat(
string grid,
ref int type,
ref int xelem,
ref int yelem,
ref double xsep,
ref double ysep,
ref int kx,
ref double x_orig,
ref double y_orig,
ref double rot,
ref double base,
ref double mult
)
Public Shared Sub GridStat (
grid As String,
ByRef type As Integer,
ByRef xelem As Integer,
ByRef yelem As Integer,
ByRef xsep As Double,
ByRef ysep As Double,
ByRef kx As Integer,
ByRef x_orig As Double,
ByRef y_orig As Double,
ByRef rot As Double,
ByRef base As Double,
ByRef mult As Double
)
Public Shared Sub GridStat (
grid As String,
ByRef type As Integer,
ByRef xelem As Integer,
ByRef yelem As Integer,
ByRef xsep As Double,
ByRef ysep As Double,
ByRef kx As Integer,
ByRef x_orig As Double,
ByRef y_orig As Double,
ByRef rot As Double,
ByRef base As Double,
ByRef mult As Double
)
public:
static void GridStat(
String^ grid,
int% type,
int% xelem,
int% yelem,
double% xsep,
double% ysep,
int% kx,
double% x_orig,
double% y_orig,
double% rot,
double% base,
double% mult
)
public:
static void GridStat(
String^ grid,
int% type,
int% xelem,
int% yelem,
double% xsep,
double% ysep,
int% kx,
double% x_orig,
double% y_orig,
double% rot,
double% base,
double% mult
)
static member GridStat :
grid : string *
type : int byref *
xelem : int byref *
yelem : int byref *
xsep : float byref *
ysep : float byref *
kx : int byref *
x_orig : float byref *
y_orig : float byref *
rot : float byref *
base : float byref *
mult : float byref -> unit
static member GridStat :
grid : string *
type : int byref *
xelem : int byref *
yelem : int byref *
xsep : float byref *
ysep : float byref *
kx : int byref *
x_orig : float byref *
y_orig : float byref *
rot : float byref *
base : float byref *
mult : float byref -> unit
Parameters
- grid
- Type: SystemString
Name of the grid to get stats from - type
- Type: SystemInt32
Element type in bytes - xelem
- Type: SystemInt32
Elements in X direction - yelem
- Type: SystemInt32
Elements in Y direction - xsep
- Type: SystemDouble
X element separation - ysep
- Type: SystemDouble
Y element separation - kx
- Type: SystemInt32
KX (storage orientation) - x_orig
- Type: SystemDouble
X origin - y_orig
- Type: SystemDouble
Y origin - rot
- Type: SystemDouble
Grid Rotation - base
- Type: SystemDouble
Base removed - mult
- Type: SystemDouble
Grid multiplier
RemarksStatistics are returned in the parameter set
See Also