要素类转 Shapefile (转换)

许可等级:BasicStandardAdvanced

摘要

可将一个或多个要素类/图层中的要素复制到一个 shapefile 文件夹中。

用法

语法

FeatureClassToShapefile_conversion (Input_Features, Output_Folder)
参数说明数据类型
Input_Features
[Input_Features,...]

将被转换并添加到输出文件夹的输入要素类或要素图层的列表。

Feature Layer
Output_Folder

将写入 shapefile 的文件夹。

Folder

代码实例

要素类转 Shapefile (FeatureClassToShapefile) 示例(Python 窗口)

以下 Python 窗口脚本演示了如何在即时模式下使用 FeatureClassToShapefile 函数。

import arcpy
from arcpy import env
env.workspace = "C:/data/airport.gdb"
arcpy.FeatureClassToShapefile_conversion(["county", "parcels", "schools"],
                                         "C:/output")
要素类转 Shapefile (FeatureClassToShapefile) 示例 2(独立脚本)

以下独立脚本演示了如何使用 FeatureClassToShapefile 函数。

# Name: FeatureClassToShapefile_Example2.py
# Description: Use FeatureClassToGeodatabase to copy feature classes
#  to shapefiles
 
# Import system modules
import arcpy
from arcpy import env
 
# Set environment settings
env.workspace = "C:/data"
 
# Set local variables
inFeatures = ["climate.shp", "majorrds.shp"]
outLocation = "C:/output"
 
# Execute FeatureClassToGeodatabase
arcpy.FeatureClassToShapefile_conversion(inFeatures, outLocation)

环境

相关主题

许可信息

ArcGIS for Desktop Basic:是
ArcGIS for Desktop Standard:是
ArcGIS for Desktop Advanced:是
9/15/2013