标注 | 说明 | 数据类型 |
派生输出
标注 | 说明 | 数据类型 |
更新的数据集 | 已更新的输入数据集。 | 要素图层;镶嵌图层 |
从 shapefile 或文件地理数据库、移动地理数据库或企业级地理数据库要素类中删除空间索引。
ArcGIS 可使用空间索引快速查找所有与空间查询相匹配的要素。
标注 | 说明 | 数据类型 |
标注 | 说明 | 数据类型 |
更新的数据集 | 已更新的输入数据集。 | 要素图层;镶嵌图层 |
arcpy.management.RemoveSpatialIndex()
名称 | 说明 | 数据类型 |
名称 | 说明 | 数据类型 |
out_feature_class | 已更新的输入数据集。 | 要素图层;镶嵌图层 |
以下 Python 窗口脚本演示了如何在即时模式下使用 RemoveSpatialIndex 函数。
import arcpy
arcpy.env.workspace = "c:/Connections/Connection to esoracle.sde"
arcpy.RemoveSpatialIndex_management("LPI.Land/LPI.PLSSFirstDivision")
以下 Python 脚本演示了如何在独立脚本中使用 RemoveSpatialIndex 函数。
# Name: RemoveSpatialIndex_Example2.py
# Description: Removes a spatial index from a SDE feature class.
# Import system modules
import arcpy
# Set workspace
arcpy.env.workspace = "c:/Connections/Connection to esoracle.sde"
# Set local variables
in_features = "LPI.Land/LPI.PLSSFirstDivision"
# Execute RemoveSpatialIndex
arcpy.RemoveSpatialIndex_management(in_features)