表至地理数据库(Geodatabase)(批量) (转换)
摘要
将一个或多个表转换为输出个人地理数据库、文件地理数据库或 SDE 地理数据库中的地理数据库表。可以将 dBASE 表、INFO 表、VPF 表、OLE DB 表、地理数据库表或表视图用作输入。
用法
语法
TableToGeodatabase_conversion (input_table, output_geodatabase)
参数 | 说明 | 数据类型 |
input_table [input_table,...] |
要转换为地理数据库表的一组表。可以将 INFO 表、dBASE 表、OLE DB 表、地理数据库表或表视图用作输入。 | Table View |
output_geodatabase |
用于保存输出地理数据库表的目标地理数据库。 | Workspace |
代码示例
TableToGeodatabase 示例(Python 窗口)
以下 Python 窗口脚本演示了如何在立即模式下使用 TableToGeodatabase 工具。
import arcpy from arcpy import env env.workspace = "C:/data" arcpy.TableToGeodatabase_conversion(["accident.dbf", "vegtable.dbf"], "C:/output/output.gdb")
TableToGeodatabase 示例(独立 Python 脚本)
以下独立脚本演示了如何使用 TableToGeodatabase 工具。
# Name: TableToGeodatabase_Example2.py # Description: Use TableToDBASE to copy tables to geodatabase format # Author: ESRI # Import system modules import arcpy from arcpy import env # Set environment settings env.workspace = "C:/data" # Make list of all tables in workspace tables = arcpy.ListTables() # list of tables should be similar to this: ["accident.dbf", "vegtable.dbf"] # Set local variables outLocation = "C:/output/output.gdb" try: # Execute TableToGeodatabase print "Importing tables to gdb: " + outLocation arcpy.TableToGeodatabase_conversion(tables, outLocation) except: print arcpy.GetMessages()
相关主题
许可信息
ArcView: 是
ArcEditor: 是
ArcInfo: 是
7/10/2012