zoukankan      html  css  js  c++  java
  • ArcPy 创建图层空间索引

    使用Python脚本进行图层的空间索引的创建。

    附上Python代码:

     1 # -*- coding: utf-8 -*-
     2 # nightroad
     3 import sys
     4 import arcpy
     5 reload(sys)
     6 sys.setdefaultencoding( "utf-8" )
     7 path = r"C:UsersAdministratorAppDataRoamingESRIDesktop10.0ArcCatalog	est.sde"
     8 arcpy.env.workspace = path
     9 DSs = arcpy.ListDatasets()
    10 # 只对test数据集内的数据进行处理
    11 arcpy.env.workspace = str(path) + "\" + 'test'
    12 ff = arcpy.ListFeatureClasses()
    13 for fc in ff:
    14     try:
    15         desc = arcpy.Describe(fc)
    16         if (desc.shapeType == "Point") or (desc.shapeType == "MultiPoint"):
    17             arcpy.AddSpatialIndex_management(fc, 0, 0, 0)
    18             print('Success:' + fc + '  Create Spatial index Completed')
    19         else:
    20              indexs = arcpy.CalculateDefaultGridIndex_management(fc)
    21              index = int(indexs[0])
    22              #针对线面对象创建三层索引
    23              arcpy.AddSpatialIndex_management(fc, index, 3*index, 9*index)
    24              print('Success:' + fc + '  Create Spatial index Completed')
    25     except:
    26         print('Failed:' + fc + " error")
  • 相关阅读:
    python数字
    python字符串方法
    python操作符与流程控制
    网络基础和python(二)
    网络基础和python
    Ubuntu源更新
    make和makefile介绍
    JavaScript
    redis mac安装配置
    网络编程之socket(TCP,UDP)
  • 原文地址:https://www.cnblogs.com/nightroad/p/9371242.html
Copyright © 2011-2022 走看看