Geodatabase To Shape (Defense Mapping)

License Level:BasicStandardAdvanced

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

Syntax

GeodatabaseToShape_defense (in_features, output_folder, coded_value_domain_export_mode, conversion_method, create_empties)
ParameterExplanationData Type
in_features
[in_features,...]

The features used to create the shapefiles.

Feature Layer
output_folder

The folder that will contain the output shapefiles.

Folder
coded_value_domain_export_mode

Indicates what method will be used to export coded domain values.

  • VALUESExports coded domain values as raw values. This is the default.
  • DESCRIPTIONSExports coded domain values using their descriptions rather than raw values.
String
conversion_method

Indicates which conversion method will be applied.

  • DEFENSE_BY_SUBTYPECreates a shapefile based on subtype name. Exports attributes applicable to that subtype. Removes trailing underscores from fields. This is the default.
  • DEFENSE_BY_FEATURECLASSCreates a shapefile based on the feature class name. Removes trailing underscores from fields.
  • GENERIC_BY_FEATURECLASS Creates a shapefile for each feature class selected. The shapefile's name matches the feature class name.
  • GENERIC_BY_SUBTYPE Creates a shapefile for each subtype of the feature class selected. The shapefile's name matches the subtype name.
  • MGCP Creates a shapefile based on the feature class subtype. File is named using the geometry type and feature code. For example, the River subtype in the WatrcrsL feature class would be exported to a shapefile called LBH140.
String
create_empties

Indicates that the tool will create empty shapefiles if the input Feature Classes are also empty.

  • CREATE_EMPTIESDo no create empty shapefiles if the corresponding feature classes to export are empty
  • NO_CREATE_EMPTIESCreate empty shapefiles if the corresponding feature classes to export are empty. This is the default.
Boolean

Code Sample

GeodatabaseToShape example (stand-alone script)

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

# Local variables
inFeatures = "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 = "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")

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