GraphTemplate (arcpy)
Zusammenfassung
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.
Diskussion
Vorlagendateien werden im Ordner "GraphTemplates" abgelegt, der sich in einer ArcGIS-Installation an zwei Orten befinden kann. Zum einen kann der Ordner "GraphTemplates" im Installationsverzeichnis von ArcGIS gespeichert sein, normalerweise unter C:\Programme\ArcGIS\Desktop10.1\GraphTemplates.
Eine andere Möglichkeit ist das Windows-Verzeichnis "Dokumente und Einstellungen" unter "Anwendungsdaten" für Esri Software. Der Pfad lautet etwa wie folgt: C:\Dokumente und Einstellungen\Benutzername\Anwendungsdaten\ESRI\ArcMap\GraphTemplates.
Syntax
Parameter | Erläuterung | Datentyp |
templateName | The graph template (.tee) used to construct the graph template. By default, uses default.tee. | String |
Codebeispiel
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)