摘要
可将一个或多个要素类/图层中的要素复制到一个 shapefile 文件夹中。
用法
与地理数据库中的要素类相比,Shapefile 存在很多限制。例如,shapefile 属性无法存储空值;它们对数字向上取整、对 Unicode 字符串的支持不足、字段名称最长只能为 10 个字符且在同一字段中无法同时存储日期和时间。此外,它们不支持在地理数据库中存在的功能,如:域和子类型。
输出 shapefile 的名称将与输入要素类的名称相同。例如,如果输入为 C:\base.gdb\rivers,则输出 shapefile 将命名为 rivers.shp。要显式控制输出 shapefile 的名称并使用一些附加转换选项,请参考要素类至要素类工具。
如果输出 shapefile 在输出文件夹中已存在,系统会在名称的结尾处追加一个数字以确保 shapefile 名称的唯一性(例如,rivers_1.shp)。
语法
FeatureClassToShapefile_conversion (Input_Features, Output_Folder)
参数 | 说明 | 数据类型 |
Input_Features [Input_Features,...] | 将被转换并添加到输出文件夹的输入要素类或要素图层的列表。 | Feature Layer |
Output_Folder | 将写入 shapefile 的文件夹。 | Folder |
代码示例
FeatureClassToShapefile 示例 1(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 Desktop Basic: 是
- ArcGIS Desktop Standard: 是
- ArcGIS Desktop Advanced: 是