Export Metadata (Defense Mapping)

License Level:BasicStandardAdvanced

Summary

Exports the Multinational Geospatial Co-production Program (MGCP) metadata datasets (Cell, Subregion, and Source feature classes) to an XML file.

Usage

Syntax

ExportMetadata_defense (in_cell_features, export_location)
ParameterExplanationData Type
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

Code Sample

ExportMetadata sample (stand-alone Python script)

In this example, the Metadata feature dataset is exported from the MGCP_TRD2 geodatabase to an XML file in the Metadata directory.

# Name: ExportMetadata_Example.py
# Description: Exports feature classes from an MGCP workspace to shapefiles
# Requirements: Esri Defense Mapping solution

# Import arcpy module
import arcpy

# Check out a DefenseMapping extension license
arcpy.CheckOutExtension("defense")

# Local variables:
in_cell_features = "C:\\Data\\Defense\\MGCP_TRD2.mdb\\MGCP_Metadata\\Cell"
in_export_location = "C:\\Data\\Defense\\Metadata"

# Process: Export Metadata
arcpy.ExportMetadata_defense(in_cell_features, in_export_location)

# Check in the Defense Mapping extension
arcpy.CheckInExtension("defense")

Environments

This tool does not use any geoprocessing environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Requires Defense Mapping
ArcGIS for Desktop Advanced: Requires Defense Mapping
11/30/2015