移除空间索引 (数据管理)
摘要
可从 shapefile、文件地理数据库或 ArcSDE 要素类中删除空间索引。无法从个人地理数据库要素类中删除空间索引。
ArcGIS 可使用空间索引快速查找所有与空间查询相匹配的要素。
用法
-
空间索引无法从已版本化的 ArcSDE 要素类中删除。
语法
RemoveSpatialIndex_management (in_features)
参数 | 说明 | 数据类型 |
in_features |
要移除空间索引的要素。 | Feature Layer; Mosaic Layer; Raster Catalog Layer |
代码示例
RemoveSpatialIndex 示例(Python 窗口)
以下 Python 窗口脚本演示了如何在即时模式下使用 RemoveSpatialIndex 函数。
import arcpy arcpy.env.workspace = "Database Connections/Connection to esoracle.sde" arcpy.RemoveSpatialIndex_management("LPI.Land/LPI.PLSSFirstDivision")
RemoveSpatialIndex 示例 2(独立 Python 脚本)
以下 Python 脚本演示了如何在独立脚本中使用 RemoveSpatialIndex 函数。
# Name: RemoveSpatialIndex_Example2.py # Description: Removes a spatial index from a SDE feature class. # Author: ESRI # Import system modules import arcpy # Set workspace arcpy.env.workspace = "Database Connections/Connection to esoracle.sde" # Set local variables in_features = "LPI.Land/LPI.PLSSFirstDivision" # Execute RemoveSpatialIndex arcpy.RemoveSpatialIndex_management(in_features)
相关主题
许可信息
ArcView: 是
ArcEditor: 是
ArcInfo: 是
7/10/2012