Unzip Cell And Import (Defense Mapping)

License Level:BasicStandardAdvanced

Summary

Esri Defense Mapping geoprocessing tool that unzips and imports compressed Multinational Geospatial Co-production Program (MGCP) 1-degree-by-1-degree cell packages (*.zip) into a target geodatabase.

Usage

Syntax

UnzipCellAndImport_defense (Root_Folder, Cross-Reference_Database, Target_Geodatabase)
ParameterExplanationData Type
Root_Folder

The root folder that contains one or more compressed shapefile cell packages in a .zip file.

Folder
Cross-Reference_Database

The cross-reference database that contains the data mapping rules for ingesting the unzipped shapefiles into the target geodatabase.

Workspace
Target_Geodatabase

The geodatabase to where the unzipped shapefiles will be imported.

Workspace

Code Sample

UnzipCellAndImport example (stand-alone script)

The following stand-alone script demonstrates how to use the UnzipCellAndImport tool.

# Name: UnzipCellAndImport_Example.py
# Description: Unzips an MGCP Cell package and loads into MGCP geodatabase
# Requirements: Esri Defense Mapping, Esri Production Mapping

import arcpy

# check out a defense and production mapping license
arcpy.CheckOutExtension("defense")
arcpy.CheckOutExtension("foundation")

# folder that contains MGCP cell packages (ZIPs)
root_folder="c:\\defense"

# cross reference & target geodatabase
cross_ref_db="c:\\cross_ref\\MGCP_TRD4_SHP_to_MGCP_TRD4_GDB.mdb"
target_gdb="c:\\data\\MGCP_TRD4.gdb"

# execute the tool
arcpy.UnzipCellAndImport_defense(root_folder,cross_ref_db,target_gdb)

# check in defense and production mapping licenses
arcpy.CheckInExtension("defense")
arcpy.CheckInExtension("foundation")

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Requires Defense Mapping
ArcGIS for Desktop Advanced: Requires Defense Mapping
9/2/2013