标注 | 说明 | 数据类型 |
Cell Features | The MGCP Cell feature layer to export. | Feature Layer |
Export Location | The directory where the metadata XML files will be created. | Folder |
派生输出
标注 | 说明 | 数据类型 |
Output Export Location | Path to the metadata XML file. | Folder |
Exports Multinational Geospatial Co-production Program (MGCP) metadata datasets (Cell, Subregion, and Source feature classes) to an XML file.
One XML file is created for each Cell feature that is selected. If none are selected, one XML file is created for each feature in the Cell feature class.
The Cell feature class must be named Cell.
The XML schema matches the ISO 19139 specification and is compliant with TRD 2, TRD 3, and TRD 4.
The metadata file contains information from the MGCP_Metadata datasets that are part of an MGCP database.
The following feature classes are exported to an XML file using this tool:
标注 | 说明 | 数据类型 |
Cell Features | The MGCP Cell feature layer to export. | Feature Layer |
Export Location | The directory where the metadata XML files will be created. | Folder |
标注 | 说明 | 数据类型 |
Output Export Location | Path to the metadata XML file. | Folder |
arcpy.topographic.ExportMetadata(in_cell_features, export_location)
名称 | 说明 | 数据类型 |
in_cell_features | The MGCP Cell feature layer to export. | Feature Layer |
export_location | The directory where the metadata XML files will be created. | Folder |
名称 | 说明 | 数据类型 |
out_export_location | Path to the metadata XML file. | Folder |
In this example, the Metadata feature dataset is exported from the MGCP_TRD2 geodatabase to an XML file in the Metadata directory.
# Name: ExportMGCPMetadata_sample.py
# Description: Export MGCP metadata from a geodatabase to an MGCP metadata XML file
# Import System Modules
import arcpy
# Check Out Extensions
arcpy.CheckOutExtension('Defense')
# Setting Local Variables
cell_features = r'C:\Testing\ExportMGCPMetadata\MGCP_TRD_4_3.gdb\MGCP_Metadata\Cell'
export_location = r'C:\Testing\ExportMGCPMetadata'
# Export MGCP metadata XML file
arcpy.topographic.ExportMetadata(cell_features, export_location)
# Check In Extensions
arcpy.CheckInExtension('Defense')