forked from Esri/arcobjects-sdk-community-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadme.html
61 lines (52 loc) · 2.3 KB
/
Readme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Mosaic raster datasets to a file raster format</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
th {
font-weight: bold;
}
</style>
</head>
<body>
## Mosaic raster datasets to a file raster format
This sample shows how to create a file raster dataset or a personal geodatabase raster mosaic from all rasters stored in a folder and its subfolders. This approach is different from creating a geodatabase raster dataset mosaic due to a different implementation mechanism for handling a file mosaic and a geodatabase (file geodatabase and ArcSDE) raster mosaic.
```
Language: C#, VB
Subject: Raster
Organization: Esri, http://www.esri.com
Date: 10/17/2019
ArcObjects SDK: 10.8
Visual Studio: 2017, 2019
.NET Target Framework: 4.5
```
### Resources
* [ArcObjects .NET API Reference online](http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm)
* [Sample Data Download](../../releases)
* [What's new](http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#91cabc68-2271-400a-8ff9-c7fb25108546.htm)
* [Download the ArcObjects SDK for .Net from MyEsri.com](https://my.esri.com/)
### Usage
1. Open the CreateFileRasterMosaic solution in Visual Studio.
1. Review the source code and substitute the local variables with your data location.
1. Compile and run.
1. Check the output raster file. It will be a mosaic of all the raster datasets in the input folder and its subfolders.
#### See Also
[Sample: Mosaic raster datasets to a geodatabase raster dataset](../../../Net/Raster/CreateGDBRasterDatasetMosaic)
---------------------------------
#### Licensing
<table><tr><th> Development licensing </th><th> Deployment licensing </th></tr>
<tr><td> ArcGIS Desktop Basic </td><td> ArcGIS Desktop Basic </td></tr>
<tr><td> ArcGIS Desktop Standard </td><td> ArcGIS Desktop Standard </td></tr>
<tr><td> ArcGIS Desktop Advanced </td><td> ArcGIS Desktop Advanced </td></tr>
<tr><td> Engine Developer Kit </td><td> Engine </td></tr>
</table>
</body>
</html>