Label | Explanation | Data Type |
Input Dataset | The input data source, which can be a file, folder, or URL. | Interop Source Dataset |
Output Geodatabase | The output file geodatabase. | Workspace |
Available with Data Interoperability license.
Summary
Converts vector or tabular data in any format supported by the ArcGIS Data Interoperability extension into feature classes or tables.
The output is written to a geodatabase. The geodatabase can then be used directly or additional postprocessing can be performed.
Usage
This tool imports nonnative data into ArcGIS. The output will typically require additional processing before you can integrate it with existing data or formats.
The number of output feature classes depends on the input data and the format. For example, if you import two MapInfo MIF/MID files, the tool will create two features classes.
To convert raster and point cloud data, create a spatial ETL tool with a reader and writer of your choice.
This tool creates a default output schema for the output geodatabase. If the output requires schema changes, use the spatial ETL tool instead.
When using ModelBuilder, access the feature classes in the output geodatabase using the Select Data tool.
Any Bézier curves in the input will be maintained as Bézier curves in the output.
Parameters
arcpy.interop.QuickImport(Input, Output)
Name | Explanation | Data Type |
Input | The input data source, which can be a file, folder, or URL. The syntax of the parameter value is described as follows:
| Interop Source Dataset |
Output | The output file geodatabase. | Workspace |
Code sample
The following stand-alone script demonstrates how to use the QuickImport function.
# Requirements: None
# Description: Import MapInfo file to a geodatabase.
# Import system modules
import arcpy
# Check out the Data Interoperability Extension
arcpy.CheckOutExtension("DataInteroperability")
# Set local variables
mif_table = "c:/data/roads.tab"
out_gdb = "c:/workspace/mif_output.gdb"
# Run Quick Import
arcpy.interop.QuickImport(mif_table, out_gdb)
Environments
Licensing information
- Basic: Requires Data Interoperability
- Standard: Requires Data Interoperability
- Advanced: Requires Data Interoperability