Felix Gündling
Felix Gündling
For me, the first route does not make sense. They say the footpath takes 9 minutes but the arrival and departure time are 8 minutes apart (arrival 12:35, departure 12:43)....
I checked you dataset and it's missing the `transfers.txt` file. As the interchange is quite tight (almost not possible), it can just be that the `transfers` module produces a >8min...
Yes, then `link_stop_distance` doesn't do anything at the moment. Maybe this variable should be used in general. As your script is compiling MOTIS from scratch anyway, can you please change...
> and with an extra transfer added to the GTFS (tram to dummy stop on top of train station) I guess this is the best way for now. We're working...
If you're happy with the results it produces already now, it's of course fine if you continue to use it.
:wave: Thank you for giving MOTIS a try! :smile: Which MOTIS version are you using? It looks like it's a version where `nigiri` didn't provide `/lookup/geo_station` functionality yet. The latest...
Can you please copy the whole output here? There are important parts of the configuration missing. It seems you didn't set the `nigiri.first_day` (as described in my previous message).
Some ideas to maybe think about: - use the `constexpr` function `type_str` instead of `canonical_type_str` which cannot be `constexpr` in C++17 - replace the `std::map` with a `constexpr`-compatible `std::array` and...
> are there cases where we cannot know the type hash at compile time ? I don't think so. Types should all be known at compile time. So in theory,...
I was playing around, but it seems to be harder than expected: https://gcc.godbolt.org/z/ovrExTeWT The `done` and `member` variables are not `constexpr`. `done` I understand, but `member` not really.