Marcel

Results 55 comments of Marcel

PersonPrepareForSim seems to be used by PrepareForMobsimImpl, which is used by (New)Controler. --> `ControlerConfigGroup`?

17 for `qsim.numberOfThreads` is certainly too much. Typically, QSim does not scale much above 4-8 threads, it might even get slower with the additional synchronization overhead. `controler.numberOfThreads` does not exist....

> But there seems to be a tendency towards under_score in plans and towards camelCase in transit schedules. nice observation. Transit Schedule was defined by me, and I have a...

The MemoryObserver is independent, it just regularly reports the current memory usage. In your case, you have an exception during the shortest path search ("routing"). This is very uncommon, as...

Yes, this is possible by analyzing the simulation events (`output_events.xml.gz`). The basic idea is to remember for each vehicle the link-enter time, and then when the vehicle leaves the link...

Just some notes: The custom `MainModeIdentifier` was only bound by SwissRailRaptor if intermodalAccessEgress was enabled. This should at least limit the number of affected people a bit. As for why...

It would be interesting to know which test fails. Anyway, you can suppress running the tests by adding `-DskipTests`, e.g. like this: ``` mvn clean install -DskipTests ```

Typically, all the tests are regularly run during development, so normally they should just work. Based on your error log, the test crashed the JVM, which is very uncommon. You...

Via supports GPKG thanks to GeoTools, that works okay. A GPKG file can actually store multiple "layers" or "geo-datasets", which might be an advantage or disadvantage. (if there is more...

> random numbers do not like to be zipped One could probably reduce the accuracy of the coordinates written out to reduce files' size. See [xkcd.com/2170](https://xkcd.com/2170/) ;-) (Theoretically, a `float`...