Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
simei94 committed Sep 25, 2024
1 parent c44f494 commit 08939ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ public Integer call() throws Exception {
calcCsvMeans(totalStats, meanTotalStatsPerDay);

// calc avro means
XYTData imissionsPerDayMean = calcAvroMeans(imissionsPerDay, "imissions");
XYTData imissionsPerHourMean = calcAvroMeans(imissionsPerHour, "imissions");
XYTData imissionsPerDayMean = calcAvroMeans(imissionsPerDay, "immission");
XYTData imissionsPerHourMean = calcAvroMeans(imissionsPerHour, "immission");
XYTData damagesPerDayMean = calcAvroMeans(damagesPerDay, "damages_receiverPoint");
XYTData damagesPerHourMean = calcAvroMeans(damagesPerHour, "damages_receiverPoint");

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/matsim/run/MeanNoiseDashboardTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void runMeanNoiseDashboardTest() throws IOException {

timeStamps.add(28800);

immissionData.put("imissions", List.of((float) i));
immissionData.put("immission", List.of((float) i));
damageData.put("damages_receiverPoint", List.of((float) i));

String seedDir = path + i + "seed/";
Expand Down

0 comments on commit 08939ef

Please sign in to comment.