Export To MGCP (Defense Mapping)

许可等级:BasicStandardAdvanced

摘要

Exports Topographic Features Data Management (TFDM) DatasetAreas and CollectionAreas features to Multinational Geospatial Co-production Program (MGCP) Cell, Subregion, and Source metadata feature classes in an MGCP geodatabase.

用法

语法

ExportToMGCP_defense (in_dataset_areas, in_cell_features)
参数说明数据类型
in_dataset_areas

The input TFDM DatasetAreas features. The tool reads CollectionAreas features from the same workspace that stores these features.

Feature Layer
in_cell_features

The MGCP Cell features the tool will write to. The tool reads Subregion and Source features from the same workspace that stores these features.

Feature Layer

代码实例

ExportToMGCP example (stand-alone Python script)

The following script creates new Cell, Subregion, and Source features from TFDM DatasetAreas and CollectionAreas feature classes.

# ExportToMGCP_Example.py
# Description: Exports TFDM metadata to MGCP
# Requirements: Esri Defense Mapping solution

# Import arcpy
import arcpy
arcpy.CheckOutExtension("defense")

# variables for data paths and feature layers
DatasetAreas = "C:\\data\\tfdm.gdb\\LTDS\\DatasetAreas"
Cell = "C:\\data\\TFDM_Metadata_Tool_Data\\Import\\Import_MX_MGCP_TRD3.gdb\\MGCP_Metadata\\Cell"
DatasetArea_features = "DatasetAreas_Layer"
MGCP_Cell_features = "Cell_Layer"

# TFDM DatasetArea feature layer
arcpy.MakeFeatureLayer_management(DatasetAreas, DatasetArea_features)

# MGCP Cell Feature Layer
arcpy.MakeFeatureLayer_management(Cell, MGCP_Cell_features)

# Export TFDM metadata To MGCP
arcpy.ExportToMGCP_defense(DatasetArea_features, MGCP_Cell_features)

arcpy.CheckInExtension("defense")

环境

此工具不使用任何地理处理环境

相关主题

许可信息

ArcGIS for Desktop Basic: 否
ArcGIS for Desktop Standard: 需要 Defense Mapping
ArcGIS for Desktop Advanced: 需要 Defense Mapping
4/27/2014