Skip to content

Commit

Permalink
Modified the source CRS input to DeckglTripsData.java to use the MATS…
Browse files Browse the repository at this point in the history
…IM global CRS instead, so that the transform of trips into EPSG:4326 in the class works correctly.
  • Loading branch information
gwehr1 committed Feb 1, 2024
1 parent e6a7286 commit bac1e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ees/src/main/java/io/github/agentsoz/ees/Run.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public void start(Config cfg, Map<Integer, List<String[]>> bdiMap) {
DeckglTripsData deckglTripsData = null;
String deckglCfg = cfg.getGlobalConfig(Config.eGlobalDeckGlOutFile);
if (deckglCfg != null) {
deckglTripsData = new DeckglTripsData(cfg.getGlobalConfig(Config.eGlobalCoordinateSystem));
deckglTripsData = new DeckglTripsData(matsimEvacModel.getScenario().getConfig().global().getCoordinateSystem());
}

// --- initialize and start MATSim
Expand Down

0 comments on commit bac1e81

Please sign in to comment.