Generate Excel From Geodatabase (Topographic Production)

摘要

Creates a Microsoft Excel file (.xls or .xlsx) from the contents of a geodatabase.

使用情况

  • This tool will create an Excel spreadsheet that defines the schema of a topographic production database and can be used in the Generate Geodatabase From Excel tool.

  • The Excel file that is generated consists of multiple worksheets based on the components of the geodatabase. The individual worksheets in the file contain the spatial reference, datasets, object classes, subtypes, fields, domains, and metadata to be included in the geodatabase.

参数

标注说明数据类型
Input Geodatabase

The geodatabase that will be used to create the Excel spreadsheet.

Workspace
Output Excel File

The Excel file that will be created from the geodatabase.

File

arcpy.topographic.GenerateExcelFromGeodatabase(in_geodatabase, out_excel_file)
名称说明数据类型
in_geodatabase

The geodatabase that will be used to create the Excel spreadsheet.

Workspace
out_excel_file

The Excel file that will be created from the geodatabase.

File

代码示例

GenerateExcelFromGeodatabase example (Python window)

The following Python window script demonstrates how to use the GenerateExcelFromGeodatabase function.

# Name: GenerateExcelFromGeodatabase_sample.py
# Description: Uses the contents of a geodatabase to create a Microsoft Excel file (.xls or .xlsx).

# Import System Modules
import arcpy

# Check Out Extensions
arcpy.CheckOutExtension('Foundation')

# Setting the environment
arcpy.env.overwriteOutput = True

# Setting Local Variables
in_geodatabase = r'C:\Data\GDB\MGCP_TRD_4_6.gdb'
out_excel_file = r'C:\Data\Excel\MGCP_TRD_4_6.xls'

# Execute Generate Excel From Geodatabase
arcpy.topographic.GenerateExcelFromGeodatabase(in_geodatabase, out_excel_file)

# Check In Extensions
arcpy.CheckInExtension('Foundation')

环境

此工具不使用任何地理处理环境。

许可信息

  • Basic: 否
  • Standard: 需要 Production Mapping
  • Advanced: 需要 Production Mapping

相关主题