要素类转 Shapefile (批量) (转换)
摘要
可将一个或多个要素类/图层中的要素复制到一个 shapefile 文件夹中。
用法
-
输出 shapefile 的名称将与输入要素类的名称相同。例如,如果输入为 C:\base.gdb\rivers,则输出 shapefile 将命名为 rivers.shp。要显式控制输出 shapefile 的名称并使用一些附加转换选项,可使用要素类至要素类工具。
-
如果输出 shapefile 在输出文件夹中已存在,系统会在名称的结尾追加一个数字以确保名称的唯一性(例如,rivers_1.shp)。
语法
FeatureclassToShapefile_conversion (Input_Features, Output_Folder)
参数 | 说明 | 数据类型 |
Input_Features [Input_Features,...] |
将被转换并添加到输出文件夹的输入要素类或要素图层的列表。 | Feature Layer |
Output_Folder |
输出或目标文件夹。 | Folder |
代码示例
FeatureClassToShapefile 示例(Python 窗口)
以下 Python 窗口脚本演示了如何在立即模式下使用 FeatureClassToShapefile 函数。
import arcpy from arcpy import env env.workspace = "C:/data/airport.gdb" arcpy.FeatureClassToShapefile_conversion(["county", "parcels", "schools"], "C:/output")
FeatureClassToShapefile 示例 2(独立脚本)
以下独立脚本演示了如何使用 FeatureClassToShapefile 函数。
# Name: FeatureClassToShapefile_Example2.py # Description: Use FeatureClassToGeodatabase to copy feature classes # to shapefiles # Author: ESRI # 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)
环境
相关主题
许可信息
ArcView: 是
ArcEditor: 是
ArcInfo: 是
7/10/2012