# encoding: utf-8這裡面存在最短路徑解算不出來的情況(arcmap中野解算不出來),可能原因是拓撲錯誤,**順序基本對應arcmap操作,只是**只找到了先生成od點shp的方式,arcmap可以直接新增點。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")
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)
Codeup最短路徑 最短路徑
n個城市,標號從0到n 1,m條道路,第k條道路 k從0開始 的長度為2 k,求編號為0的城市到其他城市的最短距離。第一行兩個正整數n 2 n 100 m m 500 表示有n個城市,m條道路,接下來m行兩個整數,表示相連的兩個城市的編號。n 1行,表示0號城市到其他城市的最短路,如果無法到達,輸出...
Codeup最短路徑 最短路徑問題
給你n個點,m條無向邊,每條邊都有長度d和花費p,給你起點s終點t,要求輸出起點到終點的最短距離及其花費,如果最短距離有多條路線,則輸出花費最少的。輸入n,m,點的編號是1 n,然後是m行,每行4個數 a,b,d,p,表示a和b之間有一條邊,且其長度為d,花費為p。最後一行是兩個數 s,t 起點s,...
最短路徑之最短路徑問題
提交 狀態 討論版 命題人 外部匯入 題目描述 平面上有n個點 n 100 每個點的座標均在 10000 10000之間。其中的一些點之間有連線。若有連線,則表示可從乙個點到達另乙個點,即兩點間有通路,通路的距離為兩點間的直線距離。現在的 任務是找出從一點到另一點之間的最短路徑。輸入共n m 3行,...