移除空间索引 (数据管理)

许可等级:BasicStandardAdvanced

摘要

可从 shapefile、文件地理数据库或 ArcSDE 要素类中删除空间索引。无法从个人地理数据库要素类中删除空间索引。

ArcGIS 可使用空间索引快速查找所有与空间查询相匹配的要素。

用法

语法

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)

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 是
ArcGIS for Desktop Standard: 是
ArcGIS for Desktop Advanced: 是
5/10/2014