How to Perform Raster Mosaic using ArcGIS Run time

813
3
Jump to solution
02-22-2018 10:14 PM
Siva_SankaraReddy_T
New Contributor II

Hi Everyone,

Is there any possibility to perform Raster(dtd 2) Mosaic  using ArcGIS Run time Application. I have dtd2 files so need to Mosaic into one file for Analysis.

Tags (1)
0 Kudos
1 Solution

Accepted Solutions
dotMorten_esri
Esri Notable Contributor

Look at the MosaicDatasetRaster class and its Create Method

MosaicDatasetRaster.Create Method (String, String, SpatialReference) 

After creation you'd then use the AddRastersAsync method:

MosaicDatasetRaster.AddRastersAsync Method 

View solution in original post

0 Kudos
3 Replies
KeithGemeinhart1
New Contributor III

In case you are still looking for a solution, you can accomplish this by building a geoprocessing model in ArcMap or Pro and then creating a gpk for use in Runtime.

0 Kudos
dotMorten_esri
Esri Notable Contributor

Look at the MosaicDatasetRaster class and its Create Method

MosaicDatasetRaster.Create Method (String, String, SpatialReference) 

After creation you'd then use the AddRastersAsync method:

MosaicDatasetRaster.AddRastersAsync Method 

0 Kudos
KeithGemeinhart1
New Contributor III

Cool! I didn't know that existed in the runtime itself.

0 Kudos