Workspace To New Raster Catalog (Samples)
摘要
Creates a new raster catalog and loads all the raster datasets in the input workspace, or geodatabase, to the raster catalog. The spatial reference of both the raster column and the geometry column are taken from the first raster dataset in the input workspace. The x,y domain of the geometry column is calculated with the union extents of all the raster dataset inputs. There must be a spatial reference attached to the raster datasets for the tool to run.
用法
-
The input workspace, or geodatabase, should contain all the raster datasets you put into the raster catalog.
-
There must be a spatial reference attached to the raster datasets for the tool to run.
-
可采用两种方式处理地理数据库中栅格目录内的栅格数据集:通过地理数据库管理或不通过地理数据库管理。通过地理数据库管理栅格目录表示栅格数据集将被存储在地理数据库内。如果某行从目录中删除,则该行也将从地理数据库中删除。如果不通过地理数据库管理栅格目录,则只存在一个指针用于连接栅格目录行和栅格数据集。加载到非托管栅格目录中的所有栅格数据集必须为磁盘上的文件。地理数据库栅格数据集只可加载到托管的栅格目录中。
-
在 ArcSDE 地理数据库中创建栅格目录时,新栅格目录名称中不能包含空格;您可以使用下划线分隔单词。
-
此示例工具是使用 Python 创建的。可对代码进行查看和编辑,以便帮助您编写自己的脚本。
-
“栅格分析环境设置”对该工具而言不可用。
语法
参数 | 说明 | 数据类型 |
input_workspace |
输入工作空间可以是目录、个人地理数据库、文件地理数据库或 ArcSDE 地理数据库。 | Folder | Workspace |
output_location |
The output location is the geodatabase where the new raster catalog will be created. | Folder | Workspace |
raster_catalog_name |
要创建的栅格目录的名称。 | String |
configuration_keyword (可选) |
可用于指定文件地理数据库和 ArcSDE 地理数据库的存储参数(配置)。个人地理数据库不使用配置关键字。 ArcSDE 配置关键字由数据库管理员进行设置。 | String |
management_type (可选) |
可采用两种方式管理栅格目录内的栅格数据集:通过地理数据库管理或不通过地理数据库管理。
| String |
代码示例
import arcgisscripting gp = arcgisscripting.create() gp.WorkspaceToNewRasterCatalog_samples("D:\\temp\\tempws", "Database Connections\\raster.sde", "wrksp_to_new_rc", "#", "Managed")