GraphTemplate (arcpy)

サマリ

Graph templates allow you to create graphs from different datasets that have the same basic structure. The template file contains all the information necessary to create those graphs, except the actual data. Once the template is loaded, you can specify the particular data source you want to use.

説明

テンプレート ファイルは、GraphTemplates という名前のフォルダで管理されます。このフォルダは ArcGIS システムの 2 つの場所に存在します。GraphTemplates フォルダの場所の 1 つは ArcGIS のインストール ディレクトリで、通常は C:\Program Files\ArcGIS\Desktop10.2\GraphTemplates になります。

もう 1 つは Windows の Documents and Settings フォルダで、Application Data の下にある Esri ソフトウェアのサブフォルダにあります。パスは次のようになります。C:\Documents and Settings\<ユーザ名>\Application Data\ESRI\ArcMap\GraphTemplates

構文

GraphTemplate (templateName)
パラメータ説明データ タイプ
templateName

The graph template (.tee) used to construct the graph template. By default, uses default.tee.

String

コードのサンプル

GraphTemplate example

Create a graph using a graph template.

import arcpy

input_data = 'c:/data/portland.gdb/downtown'
out_graph = 'portland_graph'
out_grf = 'c:/output/downtown_graph.grf'

graph = arcpy.Graph()
graph.addSeriesBarVertical(input_data, 'Value')

arcpy.MakeGraph_management(arcpy.GraphTemplate(), graph, out_graph)
arcpy.SaveGraph_management(out_graph, out_grf)

関連トピック

4/26/2014