aequilibrae.paths.SkimResults#
- class aequilibrae.paths.SkimResults[source]#
Network skimming result holder.
>>> from aequilibrae import Project >>> from aequilibrae.paths.results import SkimResults >>> proj = Project.from_path("/tmp/test_project") >>> proj.network.build_graphs() # Mode c is car in this project >>> car_graph = proj.network.graphs['c'] # minimize travel time >>> car_graph.set_graph('free_flow_time') # Skims travel time and distance >>> car_graph.set_skimming(['free_flow_time', 'distance']) >>> res = SkimResults() >>> res.prepare(car_graph) >>> res.skims.export('/tmp/test_project/matrix.aem')
Methods
__init__
()prepare
(graph)Prepares the object with dimensions corresponding to the graph objects