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.
Solved! Go to Solution.
Look at the MosaicDatasetRaster class and its Create Method
MosaicDatasetRaster.Create Method (String, String, SpatialReference)
After creation you'd then use the AddRastersAsync method:
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.
Look at the MosaicDatasetRaster class and its Create Method
MosaicDatasetRaster.Create Method (String, String, SpatialReference)
After creation you'd then use the AddRastersAsync method:
Cool! I didn't know that existed in the runtime itself.