Skip to content

Commit cf545fb

Browse files
committed
Fixed GraphML file so it is a path in the repo
Still hard coded, but now to a file relative to the `build` directory.
1 parent 75a52d0 commit cf545fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/InputGeneration/ClusterPointProcess/cluster_point_process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def generate_events(self):
339339
# PRIMARY EVENTS
340340
###########################################################################
341341
# Start your event generation process here based on the valid inputs
342-
graph_file_path = os.path.join('/Users', 'rimjhimsudhesh', 'research-summer-24', 'data-generation', 'graphml1', 'synth_output2.graphml')
342+
graph_file_path = os.path.join('..', '..', 'gis2graph', 'graph_files', 'spd.graphml')
343343
graph = nx.read_graphml(graph_file_path)
344344
graph_id = str(self.entries["Graph ID:"].text())
345345
graph_attribute = graph.nodes[graph_id]['segments']

0 commit comments

Comments
 (0)