arcpy 最短路径

发布时间:2024-11-20 01:40

通过公交专用APP预设路线,自动计算最短路径 #生活技巧# #节省生活成本# #出行省钱建议# #公交时刻表优化#

最新推荐文章于 2024-10-13 21:33:56 发布

A873054267 于 2019-02-20 15:12:52 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

# encoding: utf-8 import arcpy from arcpy import env try: # Check out the Network Analyst extension license arcpy.CheckOutExtension("Network") # Set environment settings env.workspace = "d:/OD2.gdb" env.overwriteOutput = True # Set local variables inNetworkDataset =r"d:\dl\osm\km_ND.nd" outNALayerName = "BestRoute" impedanceAttribute = "Length" fcs = arcpy.ListFeatureClasses() for outStops in fcs: try: outNALayer = arcpy.na.MakeRouteLayer(inNetworkDataset, outNALayerName,impedanceAttribute) outNALayer = outNALayer.getOutput(0) subLayerNames = arcpy.na.GetNAClassNames(outNALayer) stopsLayerName = subLayerNames["Stops"] arcpy.na.AddLocations(outNALayer, stopsLayerName, outStops, "", "5000 Meters",) arcpy.na.Solve(outNALayer, "SKIP") routelayer = arcpy.mapping.ListLayers(outNALayer) arcpy.CopyFeatures_management(routelayer[3], r"d:\short2.gdb"+"\\"+"result"+outStops) except Exception as e: print outStops print "cw" except Exception as e: # If an error occurred, print line number and error message import traceback, sys tb = sys.exc_info()[2] print "An error occured on line %i" % tb.tb_lineno print str(e)

这里面存在最短路径解算不出来的情况(arcmap中野解算不出来),可能原因是拓扑错误,代码顺序基本对应arcmap操作,只是代码只找到了先生成OD点shp的方式,arcmap可以直接添加点。

网址:arcpy 最短路径 https://www.yuejiaxmz.com/news/view/146103

相关内容

旅游省钱大法:加权最短路径
inno setup 更改安装路径学习
二代智能健身路径
居家健身系列—健身路径
环保经济,可持续发展的新路径
职工生活品质提升:路径和方法
智能健身路径让智慧健身融入生活
持续学习与专业培训:提升职场技能的关键路径
优化国土空间开发格局的新路径
运河公园新添健身路径,居民共享健康生活!

随便看看