 | CIMUGridStatComp 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 GridStatComp(
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,
ref double comp
)
public static void GridStatComp(
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,
ref double comp
)
Public Shared Sub GridStatComp (
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,
ByRef comp As Double
)
Public Shared Sub GridStatComp (
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,
ByRef comp As Double
)
public:
static void GridStatComp(
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,
double% comp
)
public:
static void GridStatComp(
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,
double% comp
)
static member GridStatComp :
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 *
comp : float byref -> unit
static member GridStatComp :
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 *
comp : float byref -> unit
Parameters
- grid
- Type: SystemString
Name of the grid to get stats from - type
- Type: SystemInt32
Element type: 0 - byte 1 - USHORT 2 - SHORT 3 - LONG 4 - FLOAT 5 - DOUBLE 6 - 32 byte Color (RGBx) - 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 - comp
- Type: SystemDouble
Compression Ratio
RemarksStatistics are returned in the parameter set
See Also