 | CIMUMosaic Method |
Create a mosaic image of an image list.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static CIMG Mosaic(
string grids,
string name,
CIPJ ipj,
double cell
)
public static CIMG Mosaic(
string grids,
string name,
CIPJ ipj,
double cell
)
Public Shared Function Mosaic (
grids As String,
name As String,
ipj As CIPJ,
cell As Double
) As CIMG
Public Shared Function Mosaic (
grids As String,
name As String,
ipj As CIPJ,
cell As Double
) As CIMG
public:
static CIMG^ Mosaic(
String^ grids,
String^ name,
CIPJ^ ipj,
double cell
)
public:
static CIMG^ Mosaic(
String^ grids,
String^ name,
CIPJ^ ipj,
double cell
)
static member Mosaic :
grids : string *
name : string *
ipj : CIPJ *
cell : float -> CIMG
static member Mosaic :
grids : string *
name : string *
ipj : CIPJ *
cell : float -> CIMG
Parameters
- grids
- Type: SystemString
Image names ('|' separated) - name
- Type: SystemString
Output image name ("" for a memory only image) - ipj
- Type: GeoEngine.Core.GXNetCIPJ
Projection to use (0 to use the first grid's projection) - cell
- Type: SystemDouble
Cell size to use (rDummy to use first grid)
Return Value
Type:
CIMGIMG Object
Remarks
The images are simply placed on the output image, starting with
the first image. Note that this function may require very large
amounts of virtual memory.
See Also