当前位置:   article > 正文

Arcpy的使用总结a

arcpy env self class

如果涉及到了Arcpy,就是基本断定是自带的功能(模块)和自动化工具(模型)已经不能满足平常的工作了。比如,可能需要具体操作某SHAPE的点,线,具体的字段,更加繁琐的事务。

只想简单的写一下过程吧。毕竟太深奥的东西真的有些触碰不到,就比如调试着代码就涉及到了看不见的底层算法,无功而返。

总体来说,基于Arcpy的程序的调试还是有一定的限制的,出错后给出的信息同样继承了Python自有的特点:让人莫名其妙,找不出问题的地方。

PyCharm是的非常棒的开发软件,配置好对应Python编译器后,会自动找寻到对应的lib文件,这样会自动识别arcpy模块。加上特别优秀的代码提示功能,很好也很快的编写或者独立于arcgis的程序,或者基于arcgis工具箱的工具。

独立的程序,这一点和python普通脚本程序没什么区别,无非将arcpy当做一个库来执行,会发挥python自身的优点,比如:多线程。最近的一次数,使用multiprocessing模块完全利用电脑的4个CPU,很快的解决有算法缺陷的数据处理。

基于工具箱的优点就是能够结合arcgis桌面环境,更好的进行数据可视化。

arcgis桌面版中的工具箱,可以使用的是两种:纯python的工具箱和脚本。

纯python工具箱就是整个界面都是由Python定义,所有内容都可以动态的生成,所需参数,设计参数类型等等。

  1. class Tool(object):
  2. def __init__(self):
  3. """Define the tool (tool name is the name of the class)."""
  4. self.label = u"设置图层要素名称"
  5. self.description = u"本插件中使用默认的图层要素名称<b>有可能</b>与实际图层要素有出路,可现在本配置中更改对应要素名称。<br/>"
  6. self.canRunInBackground = False
  7. self.items = {}
  8. def getParameterInfo(self):
  9. """Define parameter definitions"""
  10. params = []
  11. count=1
  12. pickle_file=os.path.join(sys.path[0],"item_config")
  13. if os.path.exists(pickle_file):
  14. with open(pickle_file,'r') as f:
  15. self.items=pickle.load(f)
  16. else:
  17. with open(os.path.join(sys.path[0],"item_config.txt"),'r') as f:
  18. for line in f.readlines():
  19. line = line.strip()
  20. if not line.startswith("#"):
  21. line=line.split("=")
  22. self.items[line[0].decode("utf8")]=line[1].decode("utf8")
  23. for k,v in self.items.items():
  24. params.append(arcpy.Parameter(k,u"{0}#{1}".format(count,k), datatype="GPString", parameterType="Optional"))
  25. params[-1].value=v.strip()
  26. count+=1
  27. return params
  28. def isLicensed(self):
  29. """Set whether tool is licensed to execute."""
  30. return True
  31. def updateParameters(self, param):
  32. """Modify the values and properties of parameters before internal
  33. validation is performed. This method is called whenever a parameter
  34. has been changed."""
  35. return
  36. def updateMessages(self, parameters):
  37. """Modify the messages created by internal validation for each tool
  38. parameter. This method is called after internal validation."""
  39. return
  40. def execute(self, parameters, messages):
  41. """The source code of the tool."""
  42. for param in parameters:
  43. self.items[param.name]=param.value
  44. pickle_file=os.path.join(sys.path[0],"item_config")
  45. with open(pickle_file,'w') as f:
  46. pickle.dump(self.items,f)
  47. return

而脚本就简单的多。更像是MVC性质,独立的界面设计,功能操作实现,优势就是设计简单,需要将精力更多的放在数据内容处理。

通过自己编写适当的函数,能够更好的操作,只是心中记得界面中配置好的参数位置还是很费劲的。如果有一天需要增加某个字段,有可能导致所有的参数位置需要全部更新,这将是个惨剧。

  1. import arcpy
  2. from lib import find_lane_id
  3. from xUtil import _,__
  4. if __name__=="__main__":
  5. """
  6. 0,use global
  7. 1,lane
  8. 2,seg_id_fd_name
  9. 3,seg line
  10. 4,seg_id_fd
  11. 5,lane_id_fd_name
  12. 6,
  13. """
  14. if _(6):
  15. find_lane_id(__(1), __(2), __(3), __(4), __(5), __(9),__(7),__(8))
  16. else:
  17. find_lane_id(__(1), __(2), __(3), __(4), __(5))

 

转载于:https://my.oschina.net/ev4n/blog/1488883

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/151641
推荐阅读
相关标签
  

闽ICP备14008679号