Skip to content

Commit

Permalink
move to dashboard package + add some dashboards
Browse files Browse the repository at this point in the history
  • Loading branch information
simei94 committed May 7, 2024
1 parent 48299ac commit 8a3bc68
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package org.matsim.analysis;
package org.matsim.dashboard;

import org.matsim.analysis.emissions.KelheimEmissionsDashboard;
import org.matsim.core.config.Config;
import org.matsim.core.utils.io.IOUtils;
import org.matsim.simwrapper.Dashboard;
import org.matsim.simwrapper.DashboardProvider;
import org.matsim.simwrapper.SimWrapper;
import org.matsim.simwrapper.dashboard.NoiseDashboard;
import org.matsim.simwrapper.dashboard.TravelTimeComparisonDashboard;
import org.matsim.simwrapper.dashboard.TripDashboard;

Expand All @@ -26,7 +27,9 @@ public List<Dashboard> getDashboards(Config config, SimWrapper simWrapper) {
return List.of(
trips,
new TravelTimeComparisonDashboard(IOUtils.resolveFileOrResource( "kelheim-v3.0-routes-ref.csv.gz").toString()),
new KelheimEmissionsDashboard()
new KelheimEmissionsDashboard(),
new NoiseDashboard()
// TODO: add noise dashboard here + test
);
}

Expand Down

0 comments on commit 8a3bc68

Please sign in to comment.