Export To MGCP (Defense Mapping)

Nivel de licencia:BasicStandardAdvanced

Resumen

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.

Uso

Sintaxis

ExportToMGCP_defense (in_dataset_areas, in_cell_features)
ParámetroExplicaciónTipo de datos
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

Ejemplo de código

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")

Entornos

Esta herramienta no utiliza ningún entorno de geoprocesamiento.

Temas relacionados

Información sobre licencias

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Requiere Defense Mapping
ArcGIS for Desktop Advanced: Requiere Defense Mapping
4/26/2014