| Etiqueta | Explicación | Tipo de datos | 
| Input Dataset | The data to be imported. | Interop Source Dataset | 
| Output Geodatabase | The output file geodatabase. | Workspace | 
Disponible con una licencia de Data Interoperability.
Resumen
Converts data in any format supported by the Extensión ArcGIS Data Interoperability into feature classes.
The output is stored in a geodatabase. The geodatabase can then be used directly or further post-processing can be performed.
Uso
- This tool is used to import nonnative data to the ArcGIS environment. The output usually requires additional processing before it can be integrated with existing data or formats. 
- This tool can be used as the first step in a model or script in the ArcGIS framework. 
- The feature classes that are generated depend on the input data. For instance, if you import two MapInfo MIF/MID files, two features classes will be created. 
- This tool honors the geoprocessing overwrite output setting. 
- When in ModelBuilder the feature classes that are generated in the output geodatabase can be accessed using the Select Data tool. 
- This tool creates a default output schema for the geodatabase that is created. If the output requires schema changes, then the Spatial ETL Tool should be used. 
- Bezier curves found in the input are maintained as Bezier curves in the output feature classes. 
Parámetros
arcpy.interop.QuickImport(Input, Output)
| Nombre | Explicación | Tipo de datos | 
| Input | The data to be imported. The syntax can take multiple forms: 
 | Interop Source Dataset | 
| Output | The output file geodatabase. | Workspace | 
Muestra de código
The following stand-alone script demonstrates how to use the QuickImport function.
# Name: QuickImport_Ex_01.py
# Requirements: None
# Description: Imports Map Info 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"
output_gdb = "c:/workspace/mif_output.gdb"
# Execute Quick Ixport
arcpy.interop.QuickImport(mif_table, output_gdb)Entornos
Información de licenciamiento
- Basic: Requiere Data Interoperability
- Standard: Requiere Data Interoperability
- Advanced: Requiere Data Interoperability