Alexander Farber
Alexander Farber
Hi @nyllet, your PR removes the fmt library entirely and switches directly to `std::format`... However, this might cause build failures on systems where `std::format` is incomplete. For example: - Clang...
Thanks for the report! I have found the root cause (there is more than just adapting the path in lib/index.js) and will submit a fix around 20-21 Nov, please wait...
From the OSM wiki, there are multiple ways mappers associate sidewalks with street names: | Tag | Usage | Description | |---------------------|--------------|-----------------------------------------| | is_sidepath:of:name | ~15,500 uses | Name of...
That is the city I come from! Is the issue maybe that the historical center of Riga is closed for traffic and you call a car URL?
Maybe you need to increase the radius param in the URL and not use the default (5m ?)
Hi @nyllet and @DennisOSRM, PR #7248 missed two `std::is_trivial` instances in `fingerprint.hpp` and `edge_based_graph_factory.hpp`. Also found that combining type traits with `&&` triggers a clang-tidy `misc-redundant-expression` false positive. My PR...
Hi @SiarheiFedartsou, hi @DennisOSRM please review my PR. flatc does not support generating Javascript files anymore, so I transpile Typescript to Javascript.
Hi @DennisOSRM and @SiarheiFedartsou please review my PR. The PR modifies many files in the third_party/flatbuffers folder. To verify, that I have not introduced any "trojan horses", you could run:...
Have you tested your URL call against https://router.project-osrm.org/match/v1/driving/.../&generate_hints=false&skip_waypoints=false&gaps=ignore&geometries=geojson&annotations=nodes and do you get an outside of India response there as well?
Found the input handling in packages/cli/src/ui/components/InputPrompt.tsx. Ctrl+C maps to `Command.CLEAR_INPUT` which clears the buffer. The history mechanism uses `useCommandHistory` hook but only saves submitted prompts, not cancelled drafts. Adding the...