标注 | 说明 | 数据类型 |
镶嵌数据集 | 想要从中导出几何的镶嵌数据集。 | Mosaic Layer |
输出要素类 | 为您正在创建的要素类命名。 | Feature Class |
查询定义 (可选) | 用来在镶嵌数据集中导出特定栅格的 SQL 表达式。 | SQL Expression |
几何类型 (可选) | 要导出的几何的类型。
| String |
摘要
创建显示镶嵌数据集的轮廓线、边界、接缝线或空间分辨率的要素类。
使用情况
当几何类型设置为像元大小等级时,将导出分辨率级别相同的项目的集合。 这有助于快速查看各个像元大小等级的影像范围。
参数
arcpy.management.ExportMosaicDatasetGeometry(in_mosaic_dataset, out_feature_class, {where_clause}, {geometry_type})
名称 | 说明 | 数据类型 |
in_mosaic_dataset | 想要从中导出几何的镶嵌数据集。 | Mosaic Layer |
out_feature_class | 为您正在创建的要素类命名。 | Feature Class |
where_clause (可选) | 用来在镶嵌数据集中导出特定栅格的 SQL 表达式。 | SQL Expression |
geometry_type (可选) |
要导出的几何的类型。
| String |
代码示例
这是 ExportMosaicDatasetGeometry 函数的 Python 示例。
import arcpy
arcpy.ExportMosaicDatasetGeometry_management(
"c:/workspace/exportmd.gdb/md",
"c:/workspace/exportmd.gdb/footprint_export",
"OBJECTID = 1", "FOOTPRINT")
这是 ExportMosaicDatasetGeometry 函数的 Python 脚本。
#Export Mosaic Dataset Geometry
import arcpy
arcpy.env.workspace = "c:/workspace"
#Export footprint from a single record in a mosaic dataset
mdname = "exportmd_footprints.gdb/md"
out_FC = "C:/workspace/LANDSAT_footprints"
where_clause = "OBJECTID = 1"
geometry_type = "FOOTPRINT"
arcpy.ExportMosaicDatasetGeometry_management(
mdname, out_FC, where_clause, geometry_type)