Geodatabase To Shape (Defense Mapping)
Summary
Exports one or more feature classes in a geodatabase to shapefiles.
This tool has three modes of converting feature classes to shapefiles: defense, generic, and MGCP. Each mode controls how the output shapefiles are named. The defense and MGCP export modes follow Esri Defense Mapping data model requirements. Generic mode uses the same logic as Feature Class To Feature Class.
Usage
Conversion Method specifies the export mode.
Coded domain values are exported as part of the shapefile to maintain data integrity. You can choose to export them as raw values or string descriptions.
Syntax
Parameter | Explanation | Data Type |
in_features [in_features,...] |
The features used to create the shapefiles. | Feature Layer |
in_shape_folder |
The target location for the shapefiles. | Folder |
in_output_type |
Indicates what method will be used to export coded domain values.
| String |
in_conversion_method | Indicates which conversion method will be applied.
| String |
in_create_empties | Indicates that the tool will create empty shapefiles if the input Feature Classes are also empty.
| Boolean |
Code Sample
The following stand-alone script demonstrates how to use the GeodatabaseToShape tool.
# Name: GeodatabaseToShape_Example.py # Description: Exports feature classes from an MGCP workspace to shapefiles # Requirements: Defense Mapping extension # Import arcpy module import arcpy # Check out a DefenseMapping extension license arcpy.CheckOutExtension("defense") # Import the Defense Mapping toolbox - you may have to alter this path arcpy.ImportToolbox(r"C:\Program Files\ArcGIS\Desktop10.0\ArcToolbox\Toolboxes\Defense Mapping Tools.tbx") # Local variables inFeatures = r"C:\Data\Defense\MGCP_TRD3.mdb\MGCP\AerofacA;C:\Data\Defense\MGCP_TRD3.mdb\MGCP\AerofacP;C:\Data\Defense\MGCP_TRD3.mdb\MGCP\AgristrA;C:\Data\Defense\MGCP_TRD3.mdb\MGCP\AgristrP" inShapeFolder = r"C:\Data\Shapefiles" inOutputType = "Values" inConversionMethod = "MGCP" # Execute Geodatabase To Shape function arcpy.GeodatabaseToShape_defense(inFeatures, inShapeFolder, inOutputType, inConversionMethod) # Check in the Defense Mapping extension arcpy.CheckInExtension("defense")