gpt4 book ai didi

python - Arcpy - 将 NA 图层保存到要素类

转载 作者:太空宇宙 更新时间:2023-11-03 16:44:19 25 4
gpt4 key购买 nike

我正在将一些旧工具和模型从 9.3 更新到 10.3,并在尝试从网络分析图层保存特定图层时遇到问题。

下面是我的脚本的副本及其生成的错误:

arcpy.CheckOutExtension("Network")
arcpy.env.workspace = r"C:\aaa\response profile\test.gdb"

inNetworkDataset = "J:\\projects\\netmodels\\roadnetwork\\Vic_HERE_2014_Q2\\Data\\HERE_COREMAP.gdb\\RoutingApplication\\RoutingApplication_ND"
outNALayerName = "StationOfInterest"
allFacilities = r"C:\aaa\response profile\RMN.gdb\RNM_Statewide_Fire_Stations"
facilitiesQuery = "not occ_type = 'future fire station' and label in ('Springvale')"
arcpy.MakeFeatureLayer_management(allFacilities,"inFacilities", facilitiesQuery)
outLayerFile = r"C:\aaa\response profile" + "\\" + outNALayerName + ".lyr"
timeBreaks = 30
print "varibles set"

SA_result_object = arcpy.na.MakeServiceAreaLayer(inNetworkDataset, outNALayerName,
"EmergencyServicesTime", "TRAVEL_FROM", timeBreaks,
"NO_POLYS", "NO_MERGE", "RINGS", "TRUE_LINES")
print "Service Area layer created"

#Get the layer object from the result object. The service layer can now be
#referenced using the layer object.
SA_layer_object = SA_result_object.getOutput(0)

#Get the names of all the sublayers within the service area layer.
SAClassesIn = arcpy.na.GetNAClassNames(SA_layer_object,"INPUT")
SAClassesOut = arcpy.na.GetNAClassNames(SA_layer_object,"OUTPUT")
#Stores the layer names to use later
facilitiesLayerName = SAClassesIn["Facilities"]
print "facilitiesLayerName: " + facilitiesLayerName
linesLayerName = SAClassesOut["SALines"]
print "linesLayerName: " + linesLayerName

arcpy.na.AddLocations(SA_layer_object , SAClassesIn["Facilities"], "inFacilities")
print "added locations to layer"
print "solving...."
arcpy.na.Solve(SA_layer_object )
print"solved"

********** these are the lines that is causing me issues **********
linesSublayer = SA_layer_object.listLayers(SAClassesOut["Lines"])[0]
arcpy.CopyFeatures_management(linesSublayer,"StationOfInterestLines")

我得到的错误是:

linesSublayer = SA_layer_object.listLayers(SAClassesOut["Lines"])[0]
AttributeError: 'Layer' object has no attribute 'listLayers'

任何想法是什么导致了它,我正在尽我的努力去解决它。谢谢

最佳答案

Read over the ListLayers documentation -- 它调用 MXD 作为参数,并且不用作 Layer 对象的属性。

语法:

ListLayers (map_document_or_layer, {wildcard}, {data_frame})

所以你可能想要类似的东西:

linesSublayer = arcpy.mapping.ListLayers(SA_layer_object, "Lines")[0]

关于python - Arcpy - 将 NA 图层保存到要素类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36465985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com