OD コスト マトリックス レイヤの作成(Make OD Cost Matrix Layer) (Network Analyst)
サマリ
OD(Origin-Destination)コスト マトリックス ネットワーク解析レイヤを作成し、解析プロパティを設定します。OD コスト マトリックス解析レイヤは、複数の出発地から複数の目的地までのコスト マトリックスを表すときに役立ちます。
使用法
このツールで解析レイヤを作成した後は、[ロケーションの追加(Add Locations)] ツールを使用して解析レイヤにネットワーク解析オブジェクトを追加し、[解析の実行(Solve)] ツールを使用して解析を実行し、[レイヤ ファイルの保存(Save To Layer File)] ツールを使用して結果をディスクに保存することができます。
-
このツールをジオプロセシング モデルに使用するときは、モデルをツールとして動作させる場合、出力ネットワーク解析レイヤにモデル パラメータを作成する必要があります。作成しない場合、出力レイヤは ArcMap のコンテンツ ウィンドウに追加されません。
構文
パラメータ | 説明 | データ タイプ |
in_network_dataset |
OD コスト マトリックス解析が実行されるネットワーク データセット。 | Network Dataset Layer |
out_network_analysis_layer |
作成する OD コスト マトリックス ネットワーク解析レイヤの名前。 | String |
impedance_attribute |
解析でインピーダンスとして使用されるコスト属性。 | String |
default_cutoff (オプション) |
指定された起点に対する終点の検索を停止するデフォルトのインピーダンス値。累積インピーダンスが閾値より大きくなると、解析が停止します。デフォルトは起点の閾値を指定することでオーバーライドすることができます。 | Double |
default_number_destinations_to_find (オプション) |
各起点に対して検索を実行するデフォルトの目的地の数。起点の TargetDestinationCount プロパティの値を指定することでデフォルトをオーバーライドすることができます。 | Long |
accumulate_attribute_name [accumulate_attribute_name,...] (オプション) |
解析中に累積されるコスト属性のリスト。これらの累積属性は、参考情報としてのみ使用されます。ソルバは、[インピーダンス] 属性パラメータで指定されているコスト属性のみを使用してルートを計算します。 For each cost attribute that is accumulated, a Total_[Impedance] property is added to the routes that are output by the solver. | String |
UTurn_policy (オプション) |
ストップ間でのネットワーク移動中に発生する可能性があるジャンクションでの U ターンを規制または許可します。
| String |
restriction_attribute_name [restriction_attribute_name,...] (オプション) |
解析中に適用される規制属性のリスト。 | String |
hierarchy (オプション) |
解析を実行するネットワーク データセットに使用する階層属性が定義されていない場合、パラメータは使用されません。この場合、「#」をパラメータ値として使用します。 | Boolean |
hierarchy_settings (オプション) |
レガシ: 10 より前のバージョンでは、このパラメータによって、解析のためにネットワーク データセット構築時のデフォルトの階層範囲から階層範囲の変更を行うことを許可していました。バージョン 10 では、このパラメータはサポートされていないため、空の文字列を指定する必要があります。解析のために階層範囲を変更したい場合、ネットワーク データセットのデフォルトの階層範囲を更新します。 | Network Analyst Hierarchy Settings |
output_path_shape (オプション) |
どの出力形状のタイプを選択するかに関係なく、常に最適なルートはユークリッド距離ではなくネットワーク インピーダンスによって決定されます。ネットワーク解析の結果は同じですが、ルート形状のみが異なります。 | String |
コードのサンプル
必須パラメータのみを使用してツールを実行します。
import arcpy arcpy.env.workspace = "C:/ArcTutor/Network Analyst/Tutorial/Paris.gdb" arcpy.MakeODCostMatrixLayer_na("Transportation/ParisNet","DrivetimeCosts", "Drivetime")
すべてのパラメータを使用してツールを実行します。
import arcpy arcpy.env.workspace = "C:/ArcTutor/Network Analyst/Tutorial/Paris.gdb" arcpy.MakeODCostMatrixLayer_na("Transportation/ParisNet","DrivetimeCosts", "Drivetime",10,20,["Meters","Drivetime"], "NO_UTURNS",["Oneway"],"USE_HIERARCHY","", "NO_LINES")
次のスタンドアロン Python スクリプトは、MakeODCostMatrixLayer(OD コスト マトリックス レイヤの作成)ツールを使用して、商品を倉庫からすべての店舗に 10 分以内の走行時間で配達する際の OD コスト マトリックスを作成する方法を示しています。
# Name: MakeODCostMatrixLayer_Workflow.py # Description: Create an origin-destination cost matrix for delivery of goods # from the warehouses to all stores within a 10-minute drive time # and save the results to a layer file on disk. Such a matrix can # be used as an input for logistics, delivery and routing analyses. # Requirements: Network Analyst Extension #Import system modules import arcpy from arcpy import env try: #Check out the Network Analyst extension license arcpy.CheckOutExtension("Network") #Set environment settings env.workspace = "C:/data/Paris.gdb" env.overwriteOutput = True #Set local variables inNetworkDataset = "Transportation/ParisMultimodal_ND" outNALayer = "WarehouseToStoreDrivetimeMatrix" impedanceAttribute = "Drivetime" accumulateAttributeName = ["Meters"] inOrgins = "Analysis/Warehouses" inDestinations = "Analysis/Stores" fieldMappings = "Name NOM #" outLayerFile = "C:/data/output" + "/" + outNALayer + ".lyr" #Create a new OD Cost matrix layer. We wish to find all stores within a 10 #minute cutoff. Apart from finding the drive time to the stores, we also #want to find the total distance. So we will accumulate the "Meters" #impedance attribute. arcpy.MakeODCostMatrixLayer_na(inNetworkDataset, outNALayer, impedanceAttribute, 10, "", accumulateAttributeName) #Load the warehouse locations as origins using a default field map that maps #the Name property using a name field from warehouse features. arcpy.AddLocations_na(outNALayer, "Origins", inOrgins, "","1000 Meters") #Load the store locations as destinations mapping the NOM field from stores #features as Name property arcpy.AddLocations_na(outNALayer, "Destinations", inDestinations, fieldMappings,"1000 Meters") #Solve the OD cost matrix layer arcpy.Solve_na(outNALayer) #Save the solved OD cost matrix layer as a layer file on disk with relative #paths arcpy.SaveToLayerFile_management(outNALayer,outLayerFile,"RELATIVE") print "Script completed successfully" 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)