摘要
Unzips and imports compressed Multinational Geospatial Co-production Program (MGCP) 1-degree-by-1-degree cell packages (*.zip) into a target geodatabase.
用法
This tool recursively searches the Root Folder for ZIP files. ZIP files must contain an MGCP cell package that includes one or more shapefiles and a metadata file.
If no shapefiles are found in the unzipped archive, this tool will continue execution.
This tool uses other Esri Defense Mapping and Esri Production Mapping tools. You must check out a Production Mapping (foundation) license to use this tool.
Target Geodatabase must be an MGCP geodatabase and have an MGCP_Metadata feature dataset. The feature dataset must contain a Cell feature class.
语法
UnzipCellAndImport(Root_Folder, Target_Geodatabase)
参数 | 说明 | 数据类型 |
Root_Folder | The root folder that contains one or more compressed shapefile cell packages in a .zip file. | Folder |
Target_Geodatabase | The geodatabase where the unzipped shapefiles will be imported. | Workspace |
派生输出
名称 | 说明 | 数据类型 |
Output_Geodatabase | The database where shape files from Root_Folder have been loaded. | Workspace |
代码示例
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"
# execute the tool
arcpy.UnzipCellAndImport_defense(root_folder,target_gdb)
# check in defense and production mapping licenses
arcpy.CheckInExtension("defense")
arcpy.CheckInExtension("foundation")
环境
许可信息
- ArcGIS Desktop Basic: 否
- ArcGIS Desktop Standard: 需要 Defense Mapping
- ArcGIS Desktop Advanced: 需要 Defense Mapping