 | CIMURangeGrids Method |
Determine bounding rectangle for a set of grids
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void RangeGrids(
CGXNETCore gxNetShared,
string grids,
CIPJ ipj,
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
public static void RangeGrids(
CGXNETCore gxNetShared,
string grids,
CIPJ ipj,
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
Public Shared Sub RangeGrids (
gxNetShared As CGXNETCore,
grids As String,
ipj As CIPJ,
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
Public Shared Sub RangeGrids (
gxNetShared As CGXNETCore,
grids As String,
ipj As CIPJ,
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
public:
static void RangeGrids(
CGXNETCore^ gxNetShared,
String^ grids,
CIPJ^ ipj,
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
public:
static void RangeGrids(
CGXNETCore^ gxNetShared,
String^ grids,
CIPJ^ ipj,
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
static member RangeGrids :
gxNetShared : CGXNETCore *
grids : string *
ipj : CIPJ *
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
static member RangeGrids :
gxNetShared : CGXNETCore *
grids : string *
ipj : CIPJ *
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - grids
- Type: SystemString
List of grid files, "|" delimited - ipj
- Type: GeoEngine.Core.GXNetXCIPJ
Projection for the range - see notes - min_x
- Type: SystemDouble
Min X - returned range in the projection - min_y
- Type: SystemDouble
Min Y - max_x
- Type: SystemDouble
Max X - max_y
- Type: SystemDouble
Max Y
Remarks
If an IPJ is IPJ_CS_UNKNOWN, the
IPJ of the first grid in the list will be used and
the IPJ will be returned in this setting.
Otherwise, the range in the requested IPJ will be
determined.
See Also