2016-05-18 3 views
1

フィーチャクラス(ポリゴン)をバッファし、バッファ出力レイヤとポイントシェイプファイルを交差させるツールを作成しようとしています。ツールを実行すると、バッファ解析が実行され、完了しますが、交差解析では実行されません。エラーメッセージはバッファリングして交差するArcmapツールを作成

ExecuteError: Failed to execute. Parameters are not valid.
ERROR 000732: (my buffer output layer & point shapefile) does not exist or is not supported
Failed to execute (Intersect).

です。私のすべてのレイヤーがarcmpapにロードされているので、なぜそのことがわかりません。

import arcpy 

in_Path = arcpy.GetParameterAsText(0) # first parameter in the interactive tool 
out_Path = arcpy.GetParameterAsText(1) # second parameter in the interactive tool 

bufferDistance = arcpy.GetParameterAsText(2)# third parameter in the interactive tool 

result_buffer = arcpy.Buffer_analysis(in_Path, out_Path, bufferDistance,"FULL", "ROUND", "ALL", "") #the parameters to able compute the tool 
# ^^ assign variable for the buffer analysis tool 

in_CitiesShapefile = arcpy.GetParameterAsText(3)# fourth parameter in the interactive tool 

out_CitiesWithinBuffer = arcpy.GetParameterAsText(4) # fifth parameter in the interactive tool 

arcpy.Intersect_analysis([out_Path, in_CitiesShapefile], out_CitiesWithinBuffer,"ALL", "", "INPUT") #the parameters to able compute the tool 

答えて

0

このエラーは、ファイル/フォルダのパスに問題があると発生することがよくあります。

私は次のパスを取るパラメータをチェックしたい:代わりに、前方のバックスラッシュを使用して

  • パス名に
  • 持つスペースをスラッシュ

    • スペルミスフォルダ名を

    このesri kb articleが役に立ちます。