-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge from Valhalla #2
Commits on Jun 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d44cd26 - Browse repository at this point
Copy the full SHA d44cd26View commit details
Commits on Jun 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d91013a - Browse repository at this point
Copy the full SHA d91013aView commit details -
ignore destonly edges around ferries (#4118)
* implement a fix for destonly edges around ferries, including the ability to not un-tag destonly edges further away from ferries, i.e. where there was a break to destonly continuity * changelog * new changelog block.. * revert most of the previous changes: we only don't penalize any dest_only while reclassifying if the connecting edge was dest_only AND the pred was destonly, but we still untag ANY destonly if it showed up in the final upclassified path; the main change is: also remove the connecting edge's destonly, which #1905 was missing; also fix a bug in forming the upclassified path where the initial label index could be wrong
Configuration menu - View commit details
-
Copy full SHA for 472dde5 - Browse repository at this point
Copy the full SHA 472dde5View commit details
Commits on Jun 18, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6cea9e9 - Browse repository at this point
Copy the full SHA 6cea9e9View commit details
Commits on Jun 22, 2023
-
fix use values of map matching API (#4174)
0a4e828 removed the use values `rail_connection` and `bus_connnection` and added the use values `egress_connection` and `platform_connnection`. The latter value contained a typo (three n) and the commit also didn't update the documentation accordingly. This commit fixes these oversights.
Configuration menu - View commit details
-
Copy full SHA for 99bfc6f - Browse repository at this point
Copy the full SHA 99bfc6fView commit details
Commits on Jun 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9e02e3b - Browse repository at this point
Copy the full SHA 9e02e3bView commit details
Commits on Jun 27, 2023
-
ci: add spell-checking with typos (#4179)
* refactor: rename fo variable to file_op * chore: facilitate spell-checking * fix typo missed in previous PR * ci: generalize changelog workflow to 'GitHub CI' * ci: add spell-checking with typos * Update CHANGELOG.md --------- Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3e10f1f - Browse repository at this point
Copy the full SHA 3e10f1fView commit details
Commits on Jul 4, 2023
-
* Remove unused variable Apple clang generating this error: error: variable 'found' set but not used [-Werror,-Wunused-but-set-variable] * Replace set with unordered_set std::set is not defined in libc++ on MacOS XCode SDK 12 and is defined with a different type signature in XCode 13. There doesn't seem to be any need for the set to be ordered so this fixes the compilation errors * Add maybe_unused attribute to found variable This was providing a similar error as before: error: variable 'found' set but not used [-Werror,-Wunused-but-set-variable] As the variable is only used when the logging level is set to trace.
Configuration menu - View commit details
-
Copy full SHA for e4845b6 - Browse repository at this point
Copy the full SHA e4845b6View commit details -
* adding basic functionality of side cutoff * added documentation * added roundabout_exits to documentation * applied clang-format * added test * updated changelog * improved search filter order * added comment in tests regarding driving side * applied clang-tidy * Updated description Updated the description to be more understandable. Co-authored-by: Kevin Kreiser <[email protected]> * made street_side_cutoff optional in worker.cc --------- Co-authored-by: = <[email protected]> Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1e97599 - Browse repository at this point
Copy the full SHA 1e97599View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6d2d48 - Browse repository at this point
Copy the full SHA d6d2d48View commit details -
move argparse boilerplate code to private header (#4169)
* refactor valhalla_add_elevation a bit and move the mjolnir util to baldr * add -j flag to all multithreaded executables * changelog * remove deprecated heder * oops * moved the argparse boilerplate code to a private header which all programs can share * cxxopts entry not needed in cmake * add missing midgard header * some fixes * huch, quite a logical mistake.. * few nits * more fixes * remove left-overs * keep deduplication in the executable valhalla_add_elevation * keep deduplication in the executable valhalla_add_elevation * use __FILE__ to find the executable name; overhaul src/CMakeLists.txt, we need to put the ./src directory to target_include_directories() * move get_tile_ids function into the executable * add filesystem::stem() to return the file name without extension and adapt all executables
Configuration menu - View commit details
-
Copy full SHA for b81a6c2 - Browse repository at this point
Copy the full SHA b81a6c2View commit details -
speed up transit ingestion (#4167)
* remove just_gtfs official version * use sorted feeds to speed up processing * changelog * use new no copy interfaces with different validity semantics * lint changelog * lint * fix one of the test failures but the calendar part doesnt make sense.. * fix last bug, ready to ship * fix yet another range bug. i see why c++20 made these first class citizens of stl
Configuration menu - View commit details
-
Copy full SHA for 30e11f1 - Browse repository at this point
Copy the full SHA 30e11f1View commit details
Commits on Jul 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 26489fb - Browse repository at this point
Copy the full SHA 26489fbView commit details
Commits on Jul 13, 2023
-
add source/target_percent_along in /trace_attributes (#4199)
Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 680061a - Browse repository at this point
Copy the full SHA 680061aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 077ca33 - Browse repository at this point
Copy the full SHA 077ca33View commit details -
* build database for parsed landmarks with tests * remove unnecessary struct Landmark * add bounding box query (TBC) * fix small typo * remove redundant code; code refactor and cleaning; add open db with different access * add access mode in constructor, bounding box query TBC * fix spatialite extension, finalize database builder * formatting * remove test func and fix loading spatilite by storing db_conn in the class * update test with test fixtures * move prepared statements to class member variables * add Vacuum and Analyze; update insert func input param; code cleaning * rename test to test_landmarks.cc * remove unused imports * code cleaning * update interface * tidy * update constructor, remove unnecessary enum * update connect_database func to use exceptions * add release statements * update Changelog
Configuration menu - View commit details
-
Copy full SHA for c3089cb - Browse repository at this point
Copy the full SHA c3089cbView commit details
Commits on Jul 15, 2023
-
make landmark db operations a pimpl (#4202)
* simplify original class and prepare for pimpl * finish pimpl * formant * changelog
Configuration menu - View commit details
-
Copy full SHA for d544de3 - Browse repository at this point
Copy the full SHA d544de3View commit details
Commits on Jul 19, 2023
-
sudo install python dependencies on OSX (#4209)
* sudo install python dependencies on OSX * well then.. install cython urgh * huh, wrong python3 maybe, pre-commit depends on pyyaml 6.0 and installs without issues, 5.9 should have a wheel as well, but when downgrading pip decides to build from source instead.. urgh. last resort: pin pre-commit to a version which depends on pyyaml < 6.0, but eventually we'll need to do the conan switch to 2.0 * get rid of cython again..
Configuration menu - View commit details
-
Copy full SHA for e62ea86 - Browse repository at this point
Copy the full SHA e62ea86View commit details
Commits on Jul 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e59975b - Browse repository at this point
Copy the full SHA e59975bView commit details
Commits on Jul 23, 2023
-
let
:forward
and:backward
tags override access for supported mod……es (#4204) * coalesce the various gurka access tests into one * add failing test * add handling for :forward tags for all major modes * lint * update taginfo * changelog * lint * we can delude ourselves that bikes are vehicles
Configuration menu - View commit details
-
Copy full SHA for 11feaf0 - Browse repository at this point
Copy the full SHA 11feaf0View commit details
Commits on Jul 24, 2023
-
add [[maybe_unused]] in appropriate places to compile with default fl…
…ags and LOG_LEVEL=WARN (#4197)
Configuration menu - View commit details
-
Copy full SHA for 0abdc26 - Browse repository at this point
Copy the full SHA 0abdc26View commit details
Commits on Jul 25, 2023
-
* implement callback and landmark parse function - first version * implement landmark parser and test passed * tidy * add BuildLandmarkFromPBF function: parse landmarks from pbf and store them in database * fix bug 'overwrite' * tidy * update Landmark type to enum of uint8_t with 15 popular amenity values, and update database part accordingly * remove redundant func and test, code cleaning * update LandmarkType to include only obvious landmarks for vehicle routing * rename to landmark_builder * move insertion of landmarks into node callback to have them directly inserted in to db after being parsed * move landamark_callback to anonymous namespace * add default values to LandmarkType * update landmark_callback to parse landmark nodes only; update landmark test with border cases * update test detail * change default landmark name to empty string and remove defaults for lat and lng * fix LandmarkDatabase constructoe, and fix rebase issues * remove unnecessary tag 'landmark' in landmark_callback and update test * update landmark_callback to not pass LandmarkDatabase as parameter in constructor * code cleaning * update BuildLandmarkFromPBF interface to take ptree for executable * enable separate executable for landmrk builder * enable valhalla_build_landmarks commandline * fix typo * remove comments * remove struct Landmark and update interface and tests * code cleaning in landmark tests * change landmark database to only allow writes at creation; remove LandmarkType::null; code cleaning * update CHANGELOG.md and description * remove bus_station and biergarten in LandmarkType * address code reviews * add remarks for LandmarkType * address code reviews * update CHANGELOG.md
Configuration menu - View commit details
-
Copy full SHA for d150ab0 - Browse repository at this point
Copy the full SHA d150ab0View commit details
Commits on Jul 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 05ac342 - Browse repository at this point
Copy the full SHA 05ac342View commit details
Commits on Aug 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8b0155b - Browse repository at this point
Copy the full SHA 8b0155bView commit details
Commits on Aug 4, 2023
-
Test directory sign compare (#4227)
* [test/gurka/test_traffic.cc] sign-compare: int -> uint32_t * [test/mapmatch.cc] sign-compare: size_t -> int * [test/gurka/test_64bit_wayid.cc] sign-compare: int -> size_t * [test/gurka/test_osrm_serializer.cc] sign-compare: int -> size_t * [test/gurka/test_precision.cc] sign-compare: int -> size_t * [test/gurka/test_time_dependent_tags.cc] sign-compare: int -> size_t * [test/gurka/test_turn_lanes.cc] sign-compare: int -> size_t * [test/http_tiles.cc] sign-compare: int -> size_t * [test/shape_attributes.cc] sign-compare: int -> size_t * [test/viterbi_search.cc] sign-compare: int -> size_t * [test/gurka/test_traffic_smoothing.cc] sign-compare: int -> size_t * [test/recover_shortcut.cc] sign-compare: int -> size_t * [test/gurka/test_match.cc] sign-compare: int -> size_t & invalid/is_valid * [test/gurka/test_route.cc] sign-compare: int -> size_t & invalid/is_valid * [test/gurka/test_osrm_serializer.cc] Using rapidjson::SizeType * [test/http_tiles.cc] Using std::filesystem
Configuration menu - View commit details
-
Copy full SHA for 0da6d20 - Browse repository at this point
Copy the full SHA 0da6d20View commit details -
* [test/gurka/test_build_admin.cc] Removing unused variables * [test/gurka/test_build_admin.cc] using std::filesystem --------- Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 89dfed0 - Browse repository at this point
Copy the full SHA 89dfed0View commit details
Commits on Aug 9, 2023
-
fix crash in timedistancebssmatrix.cc (#4244)
* fix crash in timedistancebssmatrix.cc * update changelog.md
Patrick Qian authoredAug 9, 2023 Configuration menu - View commit details
-
Copy full SHA for 753c8e7 - Browse repository at this point
Copy the full SHA 753c8e7View commit details
Commits on Aug 11, 2023
-
fix up Cmake/protobuf disaster (#4207)
* use protobuf's CMake config instead of CMake's own * add todo * ugly workaround * manually find & link abseil to protobuf * changelog * comment out the dll line * boil down to linking only the used abseil library
Configuration menu - View commit details
-
Copy full SHA for 45d10fa - Browse repository at this point
Copy the full SHA 45d10faView commit details
Commits on Aug 20, 2023
-
fix: links on the optimized route API document (#4260)
* fix: links on the optimized route API document * docs: updated changelog
Configuration menu - View commit details
-
Copy full SHA for 449ab16 - Browse repository at this point
Copy the full SHA 449ab16View commit details
Commits on Aug 24, 2023
-
Update graph tile to allow adding landmarks (#4233)
* skeleton for updates to the tile structure * update AddLandmark * fix bugs and code cleaning * add string_to_landmark and vice versa in landmark header * move stuff into baldr * more structure to the test * update Landmark back to struct * update get_landmarks_by_bbox arguments order * problem: sanity checks failed * update Landmark::from_str to constructor * fix encode and decode of lng and lat for landmark * fix typo and argument names * fix null byte bug by updating encoding of Landmark objects * failing test * some ramblings about how to get the data in ther * back to fixed length encoding of Landmark lat and lng; update EdgeInfo::GetTaggedValues and EdgeInfo::GetTags() * fix bug and allow more landmark tests * tidy * fix bug * remove repeated imports * update changelog * use std::move and add to landmark test * address code review * complete test * remove comments and optimize tests * add a new line at the end of file * remove fixed landmark in the test --------- Co-authored-by: Kevin Kreiser <[email protected]> Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 36d28a0 - Browse repository at this point
Copy the full SHA 36d28a0View commit details
Commits on Aug 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d38153e - Browse repository at this point
Copy the full SHA d38153eView commit details
Commits on Aug 29, 2023
-
Tyr OSRM serializer: create bannerInstructions in step (#4093)
* Tyr osrm_serializer: Create bannerInstructions in step * Tyr osrm_serializer: Make sure maneuver_type and turn_modifier isn't called twice * Adds API flag to configure usage of bannerInstructions in OSRM serializer, default is false * Tyr: Adds 'secondary' bannerInstructions * Tyr: route_serializer_osrm apply clang-format * Apply clang-format to worker.cc * Tyr OSRM serializer removes unnecessary 'std::move' calls * Tyr OSRM serializer break out intersections lane_indications function * WIP: Tyr route_serializer_osrm - adds 'sub' lane instructions to bannerInstructions * Tyr: OSRM serializer #lane_indications function pass turn_lane as pointer * Tyr OSRM serializer: Makes sure, there is always a bannerInstructions in the final step * Tyr OSRM serializer: Removes arrive_banner_instructions function * Tyr OSRM serializer: Adds initial version of gurka test * Tyr OSRM serializer: Apply clang-format * Tyr OSRM serializer expand gurka test * Tyr OSRM serialize improve gurka test to cover ref tag * Tyr OSRM serializer: Creates additional bannerInstruction with 'sub' banner if the lanes come late in the step * Tyr OSRM serializer: Adds lane_indications test * Adds documentation on how to use the OSRM format with the optional banner_instructions * Adds bannerInstructions enhancement to CHANGELOG * Update proto/options.proto Co-authored-by: Kevin Kreiser <[email protected]> * Update docs/docs/api/turn-by-turn/api-reference.md Co-authored-by: Kevin Kreiser <[email protected]> * Tyr OSRM serializer: simplify lane_indications function signature * Tyr OSRM serializer: Improve bannerInstructions - add exits, use only last lane information and pick better primary / secondary banners * Tyr OSRM serializer: Add tests for motorway exit in bannerInstructions * Tyr OSRM serializer: Adds degrees and driving_side to primary banner instruction for roundabouts and their exit steps * Refactor test_osrm_serializer to use a test fixture class * Small changes after code review --------- Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fe67191 - Browse repository at this point
Copy the full SHA fe67191View commit details -
update submodules which had new releases (#4231)
* update submodules which had new releases (unless it was a major version change) * revert that patch --------- Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f14e32a - Browse repository at this point
Copy the full SHA f14e32aView commit details -
add option to valhalla_build_extract to use existing tar file for loo…
…kup/copy (#4255) * add option to valhalla_build_extract to make an extract tar from an existing extract tar * format and some cleanup * changelog * black * amend tests * deduplicate before writing to tar.. geojsons might catch many duplicates * make the parent dir of the output tar file * oops * more oops * one more ooops * changelog
Configuration menu - View commit details
-
Copy full SHA for 9c8bd05 - Browse repository at this point
Copy the full SHA 9c8bd05View commit details
Commits on Sep 6, 2023
-
Add Landmarks to Tiles (#4278)
* skeleton for updates to the tile structure * update AddLandmark * fix bugs and code cleaning * add string_to_landmark and vice versa in landmark header * move stuff into baldr * more structure to the test * update Landmark back to struct * update get_landmarks_by_bbox arguments order * problem: sanity checks failed * update Landmark::from_str to constructor * fix encode and decode of lng and lat for landmark * fix typo and argument names * fix null byte bug by updating encoding of Landmark objects * failing test * some ramblings about how to get the data in ther * back to fixed length encoding of Landmark lat and lng; update EdgeInfo::GetTaggedValues and EdgeInfo::GetTags() * fix bug and allow more landmark tests * tidy * fix bug * remove repeated imports * update changelog * use std::move and add to landmark test * fix crash in timedistancebssmatrix.cc (#4244) * fix crash in timedistancebssmatrix.cc * update changelog.md * fix up Cmake/protobuf disaster (#4207) * use protobuf's CMake config instead of CMake's own * add todo * ugly workaround * manually find & link abseil to protobuf * changelog * comment out the dll line * boil down to linking only the used abseil library * address code review * complete test * fix: links on the optimized route API document (#4260) * fix: links on the optimized route API document * docs: updated changelog * skeleton for adding landmarks to the tiles * more skeleton comments * Update landmarks.cc * more draft * finish landmarks.cc and resolve compilation issues * issue to be fixed * bug: landmark added twice. the repeated landmark is always the last one to be added. NOTE: GraphTileBuilder::AddName cannot recognize the 'same' string. This bug is also correlated with landmark name size. * fix bug and more tests * fix bug of repeats and clean up code * fix typo * add a search cutoff for landmarks, and update tests * add error test and use std::move in edgeinfo_offset_map_ update * address code reviews and add comments * update Changelog * small update on const variable and tests * add funciton description * quick update --------- Co-authored-by: Kevin Kreiser <[email protected]> Co-authored-by: Patrick Qian <[email protected]> Co-authored-by: Nils <[email protected]> Co-authored-by: Pranav Chatly <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7696735 - Browse repository at this point
Copy the full SHA 7696735View commit details
Commits on Sep 13, 2023
-
removed clear_heading while sanitizing in loki_worker_t (#4288)
* removed clear_heading while sanitizing in loki_worker_t #1802 * updated CHANGELOG.MD #1802 --------- Co-authored-by: jehamannco <[email protected]> Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 97cad06 - Browse repository at this point
Copy the full SHA 97cad06View commit details
Commits on Sep 19, 2023
-
Add landmarks to maneuvers (#4293)
Co-authored-by: nilsnolde <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5323586 - Browse repository at this point
Copy the full SHA 5323586View commit details
Commits on Oct 12, 2023
-
specify intel mac build on circle (#4327)
circleci changed how they do mac builds to support M1. now they only have one resource class (smaller than what we were using) for intel based builds so for the time being we have to use that: https://circleci.com/docs/using-macos/#supported-xcode-versions
Configuration menu - View commit details
-
Copy full SHA for c30e6fb - Browse repository at this point
Copy the full SHA c30e6fbView commit details
Commits on Oct 16, 2023
-
* WIP: Add Singleton * Change config singleton and refactor odin worker * changed config singleton interface * revert changes * Remove toplevel references to config * Clang tidy and format * Add test * Simplify test * Remove additional config use * Rename, simplify singleton and use other namespace * clang-format * include sorting * test fix * Update CHANGELOG.md * Move config singleton/Remove unnessecary function * Resolve naming collision * format * fix OneInstanceExisting test * Fixed slipped file * Add error handling and new exception to intercept * Update CHANGELOG.md --------- Co-authored-by: Nils <[email protected]> Co-authored-by: johannes-no <[email protected]> Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4ab376a - Browse repository at this point
Copy the full SHA 4ab376aView commit details
Commits on Oct 17, 2023
-
Update the street name and sign data processing include language and …
…pronunciations (#4268) * process default_language * added LanguageTag * added LanguageTag * added logic to process default langs * added default_languages * added new GetTagTokens * added lang lookups * added language * ported language logic * more language updates * not needed. * rm jct * format * added lang check * refactored to just have 1 linguistic record. * added more entries * kLanguage removed. moved kNone to 5 to avoid versioning of the tiles * refactored * moved pronunciations and langs to maps. * cleanup and added lang and pronunciation tags. * Wales fix * updated * clang-tidy * clean up * updated. * missed 2 changes. * clean up * more clean up * added bridge * pr clean up * updated for new spell check * more spell check * Update CHANGELOG.md * switched from 3 spaces to 2 * refactored to test_phonemes_w_langs.cc. Reduced code duplication --------- Co-authored-by: Greg Knisely <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0f6367a - Browse repository at this point
Copy the full SHA 0f6367aView commit details -
Add encoded elevation to EdgeInfo - serialize in route and trace_attr…
…ibutes JSON (#4279) * Initial code for storing elevation in Valhalla tiles. * Add elevation to nodes and edgeinfo * Added mjolnir code to populate node and edge elevation. Added code to Valhalla route serializer and trace serializer to output elevation (JSON) if elevation_interval is specified. * Fix formatting * Process elevation_interval JSON input * Update api-reference.md * Update api-reference.md * Update api-reference.md * Update api-reference.md * Add to change log * Address some PR comments. * Update doc for elevation along route. * Fix loop using size_t (was incorrect when addressing PR comments). * Add to function level comments * Use std::move to copy the encoded elevation vector. * started elevation test * more updates * lend a hand on elevation tests * finished up * close the file --------- Co-authored-by: Greg Knisely <[email protected]> Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f22344c - Browse repository at this point
Copy the full SHA f22344cView commit details
Commits on Oct 18, 2023
-
more sustainable way to work with protobuf in cmake (#4334)
* more sustainable way to work with protobuf in cmake * let's piggyback on CMAKE_FIND_PACKAGE_PREFER_CONFIG
Configuration menu - View commit details
-
Copy full SHA for 7eb700a - Browse repository at this point
Copy the full SHA 7eb700aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f3420c - Browse repository at this point
Copy the full SHA 2f3420cView commit details
Commits on Oct 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for cbcb1f6 - Browse repository at this point
Copy the full SHA cbcb1f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 159bbb6 - Browse repository at this point
Copy the full SHA 159bbb6View commit details -
playing around with arm builds (#4213)
* see if arm has a jammy image available * mason wont have clangformat for arm probably * forget format for real th is time * use newer vanilla ubuntu for arm, older versions of luajit are broken * circle syntax * syntax again * try to share more and always use venv * not sure where to get pip thought it came with venv * really every time? * git too * stuff * no format for now * need sleep * have to disable warnings to get it to build on arm * try with sudo * kick * no sudo on arm? * circle syntax * skip format check for c++ on arm * move sudo into the right places in the linux install script * activate first so python is in its right mind * use venv * try to unbreak mac * try prime server in /tmp and disable errors from bench * fix isochrones on arm platforms * lint * mac already has venv * already there * unbreak the amd linux installs * disable sanitizers so we can get a faster build * fix astar shape comparisons * lint * more shape checks for arm * actually fix the isochrone test, its off by 23 meters * fix printing * fix up landmark test to be aware of opposing edges * lint * simplify encode and decode of landmarks into tag values * fix landmark test with slight buffer on bbox query * sweet jesus * changelog * spelling * update docker build to support arm as well at github actions. update circle to use env vars to use python virtual env * try to remove virtual env * circle lint * more ci lint * maybe this will work * check if we need to install stuff * use virtual env if in one.. * no file command * on the release build we have to disable benchmark werror because of the newer compiler * compiler too new with bugs! * typo * trying out multiplatform builds for docker * typo * try with sudo * typo * tag not working? * oops * update automatic workflow for docker publishing
Configuration menu - View commit details
-
Copy full SHA for 9aa1c1c - Browse repository at this point
Copy the full SHA 9aa1c1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e84ef6 - Browse repository at this point
Copy the full SHA 5e84ef6View commit details
Commits on Oct 21, 2023
-
remove conan from windows build instructions (#4339)
* remove conan from windows build instructions * clone cmf * win path * remove the god awful warnings from stdout * screw ninja.. * git clone can't checkout single commits, only branch/tag * weird.. missed boost-heap but linux didn't care. also remove old vcpkg deps file * right, msvc does things differently than ninja * upgrade vcpkg to newest master and update docs
Configuration menu - View commit details
-
Copy full SHA for 6f1c95d - Browse repository at this point
Copy the full SHA 6f1c95dView commit details
Commits on Oct 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3806832 - Browse repository at this point
Copy the full SHA 3806832View commit details
Commits on Oct 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5b3cd97 - Browse repository at this point
Copy the full SHA 5b3cd97View commit details
Commits on Oct 28, 2023
-
fix DST sensitive transit test (#4364)
* fix DST sensitive transit test * fix tidy
Configuration menu - View commit details
-
Copy full SHA for 08308fe - Browse repository at this point
Copy the full SHA 08308feView commit details
Commits on Oct 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 32afb8e - Browse repository at this point
Copy the full SHA 32afb8eView commit details
Commits on Nov 2, 2023
-
Ferry reclassification fix when multiple edges exist between a node p…
…air (#4361) * When adding a node label, add the edge's wayindex. When recovering the shortest path, make sure the wayindex of the edge connecting the node with its predecessor node matches the wayindex. This ensures the correct edge on the shortest path is marked for reclassificiation. Prior to this, multiple edges could become reclassified when there is more than 1 edge between a node pair. * Change log * Fix use of way_index when recovering shortest path. * Add a test to make sure only the shorter edge between a node pair is reclassified. Tested this against master and it fails. Succeeds on the branch. * formatting fix
Configuration menu - View commit details
-
Copy full SHA for 3dab7da - Browse repository at this point
Copy the full SHA 3dab7daView commit details
Commits on Nov 6, 2023
-
remove timezone aliases from sql script (#4382)
* I hope it's that simple.. * changelog * add test * format * Tidy
Configuration menu - View commit details
-
Copy full SHA for 83f1c95 - Browse repository at this point
Copy the full SHA 83f1c95View commit details
Commits on Nov 15, 2023
-
Fix ferry shortest path recovery (#4378)
* Add test that demonstrates the wrong path can be recovered from the ShortestPath method in ferry_connections.cc * Fix the last_label_idx - make sure it is only set when an edge with the target classification (or better) is present at the node being expanded. Identify cases where no reclassification occurs (e.g,. islands with no edges that meet the target classification) and log the locations. * Add to change log * If no path is found, always add to set of ferry locations with no path. * Add test to make sure no edges are reclassified if the target classification is not found. * Looks like ReclassifyFerryConnections automatically sets the first edge connecting to the ferry to primary. I added a test to make sure no edges are reclassified if no edges with the target classification are encountered. However, the initial ferry connection edge is set to primary even if no edges with the target classification are encountered in ShortestPath. * Formatting * remove some method declarations - not needed since only used in ferry_connections.cc. * More properly identify cases where no paths to/from ferries to target classification roadways exist. * formatting * don't need to include unordered_set anymore. * Remove the check if node_labels.size == 0. This is redundant now that we check for a valid last_label_idx being set. * Reclassify the first edge IF a connection to higher class roads is found. * Modify the nothing reclassified test to remove the first edge connected to the ferry. No longer upclassed if no path to higher class edges is found.
Configuration menu - View commit details
-
Copy full SHA for 274a3e7 - Browse repository at this point
Copy the full SHA 274a3e7View commit details
Commits on Nov 16, 2023
-
Avoid Issues with GraphReader::GetBeginNodeId (#4390)
* copy tile pointer rather than mutate to avoid confusion * make it work like the rest of the functions and comment it * add a test for any reader functions that use tile cache args * api doc strings
Configuration menu - View commit details
-
Copy full SHA for e6362fb - Browse repository at this point
Copy the full SHA e6362fbView commit details
Commits on Nov 21, 2023
-
Allow all roads for motorcycles. (#4348)
Co-authored-by: Evgen Bodunov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 602c8ab - Browse repository at this point
Copy the full SHA 602c8abView commit details
Commits on Nov 23, 2023
-
motorcar:conditional should not apply to motorcycle and moped (#4359)
Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6a83b61 - Browse repository at this point
Copy the full SHA 6a83b61View commit details
Commits on Nov 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 661f4fc - Browse repository at this point
Copy the full SHA 661f4fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9495be1 - Browse repository at this point
Copy the full SHA 9495be1View commit details
Commits on Nov 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ffe790d - Browse repository at this point
Copy the full SHA ffe790dView commit details
Commits on Nov 30, 2023
-
dont build shortcuts across access_restrictions (#4326)
Co-authored-by: nilsnolde <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fe6c47c - Browse repository at this point
Copy the full SHA fe6c47cView commit details -
Document traffic feature (#4259)
Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e252f59 - Browse repository at this point
Copy the full SHA e252f59View commit details -
few matrix serializer fixes (#4366)
* & for verbose matrix response was kinda broken due to #4335 above * add date_time array to slim matrix * fix tid * Nn matrix serializer fixes (#4385) * src/tyr/matrix_serializer.cc is warning free * Testing with true value and fixing test * revert including date_time in non-verbose matrix --------- Co-authored-by: Vicky Vergara <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b263871 - Browse repository at this point
Copy the full SHA b263871View commit details
Commits on Dec 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f6e2ae4 - Browse repository at this point
Copy the full SHA f6e2ae4View commit details
Commits on Dec 4, 2023
-
Fix bug in thor_worker_t::build_trace on wrong edge_index assignment (#…
…4413) * Fix bug in build_trace on wrong edge_index assign * Update Changelog * Updated edge_index calculation logic * Rollback edge_index type --------- Co-authored-by: Mahdi Hasnat Siyam <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 11c6358 - Browse repository at this point
Copy the full SHA 11c6358View commit details
Commits on Dec 5, 2023
-
* save my work on the failing laptop * refactor successful, all tests pass and the deadend bug is fixed.. * put the expansion direction into the template arguments * rename vars * do the memory retaining stuff as good as possible * clean up other algos * fix #4360 and the matrix-off-by-1-second issue * put the dependencies back in place in cmakelists * changelog * format * matrix expansion test also needed an update; good: we expand less edges:) * oops, edgecost & transition cost were the same for both trees * small update * ha, what a shitshow.. tiny mis-ordering of statements messed it all up.. * last remaining bugs fixed * cleanup * initialize interrupt function with nullptr so using costmatrix by itself doesn't segfault * re-add the additional testing scripts * format * increase the maximum threshold by 3% to account for slightly more expansion with deadend logic; still could/should be based on max cost of (which?) adjacency set * after fixing the bugs, the expansion test has no changes * revert * make the PR files warning-free (#4410) * address dave's review: change some of vicky's stuff around; add a gurka test for costmatrix to show that deadends are working now * address review * fix some warnings that crept in * format --------- Co-authored-by: Vicky Vergara <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 32a09fd - Browse repository at this point
Copy the full SHA 32a09fdView commit details -
config costmatrix locations' reserved memory (#4424)
* save my work on the failing laptop * refactor successful, all tests pass and the deadend bug is fixed.. * put the expansion direction into the template arguments * rename vars * do the memory retaining stuff as good as possible * clean up other algos * fix #4360 and the matrix-off-by-1-second issue * put the dependencies back in place in cmakelists * changelog * format * matrix expansion test also needed an update; good: we expand less edges:) * oops, edgecost & transition cost were the same for both trees * small update * ha, what a shitshow.. tiny mis-ordering of statements messed it all up.. * last remaining bugs fixed * cleanup * initialize interrupt function with nullptr so using costmatrix by itself doesn't segfault * re-add the additional testing scripts * format * increase the maximum threshold by 3% to account for slightly more expansion with deadend logic; still could/should be based on max cost of (which?) adjacency set * after fixing the bugs, the expansion test has no changes * revert * make the PR files warning-free (#4410) * make reserverd memory for locations in CostMatrix configurable * reorder * address dave's review: change some of vicky's stuff around; add a gurka test for costmatrix to show that deadends are working now * address review * fix some warnings that crept in * format * changelog --------- Co-authored-by: Vicky Vergara <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3ea024b - Browse repository at this point
Copy the full SHA 3ea024bView commit details
Commits on Dec 9, 2023
-
Refactor EdgeLabel to reduce memory (#4439)
* Refactor EdgeLabel and derived classes to lower memory use. Fixed an overflow of one of the 64 bit data members (lowers memory use by 8 bytes). Moved transition_cost and distance out of base EdgeLabel class. Added a new dervied class, PathEdgeLabel, for use in path recosting. Removed some unused Update methods. The base EdgeLabel class was reduced to 40 bytes (was 56 bytes). * Use the new PathEdgeLabel (derived class of EdgeLabel) for LabelCallbacks and path recosting. * Update calls to EdgeLabel constructor and methods. * Add unit tests to validate EdgeLabel size (and its derived classes). * Update EdgeLabel use. * Update astar_bss to use BDEdgeLabel (as do all other A* methods). * formatting * Move distance to end of BDEdgeLabel. This leaves 4 bytes spare before the size would increase. * update change log * Derive MMEdgeLabel from EdgeLabel (rather than PathEdgeLabel). Reorganize distance data member to lower the size by 8 bytes (now matches prior size so no size increase for MMEdgeLabel anymore). * Actually MMEdgeLabel size did decrease to 72 bytes (was 80)! * formatting (again) * Move EdgeLabel size tests to double_bucket_queue test so that a new test program does not need to be generated. * format fix
Configuration menu - View commit details
-
Copy full SHA for 253443e - Browse repository at this point
Copy the full SHA 253443eView commit details
Commits on Dec 10, 2023
-
add shape to matrix response (#4432)
* save my work on the failing laptop * refactor successful, all tests pass and the deadend bug is fixed.. * put the expansion direction into the template arguments * rename vars * do the memory retaining stuff as good as possible * clean up other algos * fix #4360 and the matrix-off-by-1-second issue * put the dependencies back in place in cmakelists * changelog * format * matrix expansion test also needed an update; good: we expand less edges:) * oops, edgecost & transition cost were the same for both trees * small update * ha, what a shitshow.. tiny mis-ordering of statements messed it all up.. * last remaining bugs fixed * cleanup * initialize interrupt function with nullptr so using costmatrix by itself doesn't segfault * re-add the additional testing scripts * format * increase the maximum threshold by 3% to account for slightly more expansion with deadend logic; still could/should be based on max cost of (which?) adjacency set * after fixing the bugs, the expansion test has no changes * revert * make the PR files warning-free (#4410) * address dave's review: change some of vicky's stuff around; add a gurka test for costmatrix to show that deadends are working now * address review * fix some warnings that crept in * format * pure refactor to make room for the geometries in costmatrix * add no_shape option for shape_format * all in there incl serialization; now only needs the logic to actually put together the shape * geometry works now; spent wayyyy too much time figuring out why trivial routes won't work: costmatrix has a bug where it finds the wrong direction of the single edge * format * band-aid the trivial route bug in costmatrix * add extensive testing * merge master and changelog * docs * changelog * address review * Apply suggestions from code review Co-authored-by: Kevin Kreiser <[email protected]> * addressed review * address bug for tdmatrix when shape_format -ne 'none' * tidy * rename 'none' to 'no_shape' in JSON API; fix changelog; merge master * again tidy * test broke after renaming the JSON API * added warning when tdmatrix was used and shape_format was requested --------- Co-authored-by: Vicky Vergara <[email protected]> Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 89b0e2f - Browse repository at this point
Copy the full SHA 89b0e2fView commit details
Commits on Dec 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0374819 - Browse repository at this point
Copy the full SHA 0374819View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4fee64c - Browse repository at this point
Copy the full SHA 4fee64cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 98f06be - Browse repository at this point
Copy the full SHA 98f06beView commit details
Commits on Dec 12, 2023
-
diff_names check was missing for Graphfilter and Shortcutbuilder for …
…AddEdgeInfo call (#4436) * process default_language * added LanguageTag * added LanguageTag * added logic to process default langs * added default_languages * added new GetTagTokens * added lang lookups * added language * ported language logic * more language updates * not needed. * rm jct * format * added lang check * refactored to just have 1 linguistic record. * added more entries * kLanguage removed. moved kNone to 5 to avoid versioning of the tiles * refactored * moved pronunciations and langs to maps. * cleanup and added lang and pronunciation tags. * Wales fix * updated * clang-tidy * clean up * updated. * missed 2 changes. * clean up * more clean up * added bridge * pr clean up * updated for new spell check * more spell check * Update CHANGELOG.md * added test for graph filter * added test for graph filter * missing diff_names check. * updated. * Update src/mjolnir/graphfilter.cc Co-authored-by: Kevin Kreiser <[email protected]> * moved check to OpposingEdgeInfoMatches function * format * added comment and end at cleanup stage * Update test_filter.cc * more mainstream test setup (#4438) * more mainstream test setup * Update test_filter.cc --------- Co-authored-by: Greg Knisely <[email protected]> * created OpposingEdgeInfoDiffers since same logic is used in shortcutbuilder, graphfilter, and hierarchybuilder * added/updated diff_names check * Delete test/gurka/test_phonemes_ipa_w_langs.cc * Delete test/gurka/test_phonemes_jeita_w_langs.cc * Delete test/gurka/test_phonemes_katakana_w_langs.cc * Delete test/gurka/test_phonemes_nt_sampa_w_langs.cc * Update CHANGELOG.md * moved OpposingEdgeInfoDiffers to graphtilebuilder --------- Co-authored-by: Greg Knisely <[email protected]> Co-authored-by: Kevin Kreiser <[email protected]> Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d533886 - Browse repository at this point
Copy the full SHA d533886View commit details
Commits on Dec 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d7b0dcc - Browse repository at this point
Copy the full SHA d7b0dccView commit details
Commits on Dec 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 29cb1be - Browse repository at this point
Copy the full SHA 29cb1beView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac2c5d9 - Browse repository at this point
Copy the full SHA ac2c5d9View commit details
Commits on Dec 18, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5e4e1db - Browse repository at this point
Copy the full SHA 5e4e1dbView commit details -
updated country access overrides. (#4460)
* updated country access overrides. * Update CHANGELOG.md
Configuration menu - View commit details
-
Copy full SHA for 86c16d5 - Browse repository at this point
Copy the full SHA 86c16d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52d6ca7 - Browse repository at this point
Copy the full SHA 52d6ca7View commit details
Commits on Dec 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 241daf6 - Browse repository at this point
Copy the full SHA 241daf6View commit details
Commits on Dec 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d25c8ee - Browse repository at this point
Copy the full SHA d25c8eeView commit details
Commits on Dec 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 28fa113 - Browse repository at this point
Copy the full SHA 28fa113View commit details
Commits on Dec 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7eb70e1 - Browse repository at this point
Copy the full SHA 7eb70e1View commit details -
* naive fix for greg's observation * remove 0.5 again * Update motorscootercost.cc * Update CHANGELOG.md
Configuration menu - View commit details
-
Copy full SHA for 1f7d108 - Browse repository at this point
Copy the full SHA 1f7d108View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae8cb68 - Browse repository at this point
Copy the full SHA ae8cb68View commit details -
Configuration menu - View commit details
-
Copy full SHA for d1c11dd - Browse repository at this point
Copy the full SHA d1c11ddView commit details
Commits on Dec 29, 2023
-
Fixes #4480 Segfault in OSRM serializer with bannerInstructions when …
…destination is on roundabout (#4481) * OSRM serializer with bannerInstructions should not segfault when ending on a roundabout * Adds Changelog entry
Configuration menu - View commit details
-
Copy full SHA for 9f46abb - Browse repository at this point
Copy the full SHA 9f46abbView commit details -
update grade based speed factor by using a modified Tobler's function (…
…#4302) * update grade based speed factor * update changelog * format --------- Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 13eed43 - Browse repository at this point
Copy the full SHA 13eed43View commit details
Commits on Jan 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1dd3acd - Browse repository at this point
Copy the full SHA 1dd3acdView commit details
Commits on Jan 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 70c2291 - Browse repository at this point
Copy the full SHA 70c2291View commit details -
test files without warning use -Werror flag (#4477)
* test/gurka using -Werror on files without warnings * test using -Werror on tests without warnings * test/gurka/test_ferry_connections.cc has warnings on CI lint-build-debug' * test/gurka/test_match.cc has warnings on CI lint-build-debug * test/edgecollapser.cc has warnings on CI lint-build-debug * test/search.cc has warnings on CI lint-build-debug * test/search.cc removing multiline comment warning * test/search.cc removing multiline comment warning * test/util_odin.cc has warnings on CI lint-build-debug --------- Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7eb4784 - Browse repository at this point
Copy the full SHA 7eb4784View commit details
Commits on Jan 8, 2024
-
fix wrong time zones in time distance matrix (#4494)
Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 007042a - Browse repository at this point
Copy the full SHA 007042aView commit details
Commits on Jan 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8a6400e - Browse repository at this point
Copy the full SHA 8a6400eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 64f7321 - Browse repository at this point
Copy the full SHA 64f7321View commit details
Commits on Jan 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5540cd7 - Browse repository at this point
Copy the full SHA 5540cd7View commit details
Commits on Jan 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 562357b - Browse repository at this point
Copy the full SHA 562357bView commit details
Commits on Jan 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0cc7d6e - Browse repository at this point
Copy the full SHA 0cc7d6eView commit details
Commits on Jan 19, 2024
-
[skip ci] Remove MinGW build status from README
don't think we'll ever re-activate that one. for reference: only fedora:rawhide is somewhat set up to build mingw for geospatial stuff and there's only one maintainer for most geospatial packages, plus rawhide regularly breaks as it's cutting edge without much testing
Configuration menu - View commit details
-
Copy full SHA for 09f8ba7 - Browse repository at this point
Copy the full SHA 09f8ba7View commit details
Commits on Jan 20, 2024
-
Add time zone info to
/route
andsources_to_targets
responses (#4491) Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 381bce0 - Browse repository at this point
Copy the full SHA 381bce0View commit details
Commits on Jan 23, 2024
-
clamp truck speed to 90 kph (#4493)
Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2b2353e - Browse repository at this point
Copy the full SHA 2b2353eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 84f2259 - Browse repository at this point
Copy the full SHA 84f2259View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03fbd62 - Browse repository at this point
Copy the full SHA 03fbd62View commit details
Commits on Jan 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8074e8e - Browse repository at this point
Copy the full SHA 8074e8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4fb198d - Browse repository at this point
Copy the full SHA 4fb198dView commit details -
Bugfix of issue: Config singleton multiple instantiation issue #4521 (#…
…4523) Co-authored-by: akesmarki <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 90ae30e - Browse repository at this point
Copy the full SHA 90ae30eView commit details
Commits on Jan 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5fadcb6 - Browse repository at this point
Copy the full SHA 5fadcb6View commit details -
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 57e5e14 - Browse repository at this point
Copy the full SHA 57e5e14View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0de56b5 - Browse repository at this point
Copy the full SHA 0de56b5View commit details
Commits on Jan 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 69a6bfc - Browse repository at this point
Copy the full SHA 69a6bfcView commit details -
Configuration menu - View commit details
-
Copy full SHA for fd90ec4 - Browse repository at this point
Copy the full SHA fd90ec4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 154c47f - Browse repository at this point
Copy the full SHA 154c47fView commit details
Commits on Jan 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4d3d896 - Browse repository at this point
Copy the full SHA 4d3d896View commit details
Commits on Feb 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c9c2418 - Browse repository at this point
Copy the full SHA c9c2418View commit details
Commits on Feb 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3a92152 - Browse repository at this point
Copy the full SHA 3a92152View commit details
Commits on Feb 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for db0b6a1 - Browse repository at this point
Copy the full SHA db0b6a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 453d3ef - Browse repository at this point
Copy the full SHA 453d3efView commit details
Commits on Feb 5, 2024
-
Nn matrix geometry try2 (#4489)
Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 82d8215 - Browse repository at this point
Copy the full SHA 82d8215View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ce3aa7 - Browse repository at this point
Copy the full SHA 5ce3aa7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 21783fc - Browse repository at this point
Copy the full SHA 21783fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for e406c10 - Browse repository at this point
Copy the full SHA e406c10View commit details
Commits on Feb 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d642158 - Browse repository at this point
Copy the full SHA d642158View commit details
Commits on Feb 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1c2ff98 - Browse repository at this point
Copy the full SHA 1c2ff98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 129c55b - Browse repository at this point
Copy the full SHA 129c55bView commit details
Commits on Feb 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cd928ac - Browse repository at this point
Copy the full SHA cd928acView commit details -
Configuration menu - View commit details
-
Copy full SHA for edb4ab0 - Browse repository at this point
Copy the full SHA edb4ab0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 957c06e - Browse repository at this point
Copy the full SHA 957c06eView commit details -
Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ba5730e - Browse repository at this point
Copy the full SHA ba5730eView commit details
Commits on Feb 13, 2024
-
Aggregation updates: update opposing local idx after aggregating the …
…edges, added classification check for aggregation, and shortcut length changes (#4570) Co-authored-by: David Nesbitt <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 30068b1 - Browse repository at this point
Copy the full SHA 30068b1View commit details
Commits on Feb 14, 2024
-
Co-authored-by: Christian Beiwinkel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e7a5c16 - Browse repository at this point
Copy the full SHA e7a5c16View commit details
Commits on Feb 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for efff65d - Browse repository at this point
Copy the full SHA efff65dView commit details
Commits on Feb 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2a0ed14 - Browse repository at this point
Copy the full SHA 2a0ed14View commit details -
Configuration menu - View commit details
-
Copy full SHA for 812386f - Browse repository at this point
Copy the full SHA 812386fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ce3c3a - Browse repository at this point
Copy the full SHA 5ce3c3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d250d2 - Browse repository at this point
Copy the full SHA 5d250d2View commit details
Commits on Feb 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1fa1e01 - Browse repository at this point
Copy the full SHA 1fa1e01View commit details
Commits on Feb 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 055db1a - Browse repository at this point
Copy the full SHA 055db1aView commit details
Commits on Feb 24, 2024
-
make shortcut logging more useful (#4607)
Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3b824c9 - Browse repository at this point
Copy the full SHA 3b824c9View commit details
Commits on Feb 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f025e81 - Browse repository at this point
Copy the full SHA f025e81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6648fb9 - Browse repository at this point
Copy the full SHA 6648fb9View commit details
Commits on Mar 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3794239 - Browse repository at this point
Copy the full SHA 3794239View commit details -
Configuration menu - View commit details
-
Copy full SHA for 482bcf2 - Browse repository at this point
Copy the full SHA 482bcf2View commit details
Commits on Mar 12, 2024
-
Conflict with signinfo's temporary linguistic node sequence file caus…
…ed test failures. (#4625)
Configuration menu - View commit details
-
Copy full SHA for 929718b - Browse repository at this point
Copy the full SHA 929718bView commit details
Commits on Mar 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7f4cc6f - Browse repository at this point
Copy the full SHA 7f4cc6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40ce71b - Browse repository at this point
Copy the full SHA 40ce71bView commit details -
"soft" ignore restrictions (#4606)
Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 28eaf7a - Browse repository at this point
Copy the full SHA 28eaf7aView commit details
Commits on Mar 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 663e04e - Browse repository at this point
Copy the full SHA 663e04eView commit details
Commits on Mar 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b6bad37 - Browse repository at this point
Copy the full SHA b6bad37View commit details
Commits on Mar 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 181eed9 - Browse repository at this point
Copy the full SHA 181eed9View commit details
Commits on Mar 22, 2024
-
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nils <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dff7005 - Browse repository at this point
Copy the full SHA dff7005View commit details -
Configuration menu - View commit details
-
Copy full SHA for b491610 - Browse repository at this point
Copy the full SHA b491610View commit details
Commits on Mar 24, 2024
-
FIXED Issue #4652: src/thor/unidirectional_astar.cc doesnt work for d…
…ate_time type 2, i.e. for arrival (#4653) Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6fb3eb7 - Browse repository at this point
Copy the full SHA 6fb3eb7View commit details
Commits on Mar 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 962719a - Browse repository at this point
Copy the full SHA 962719aView commit details
Commits on Mar 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6f9f637 - Browse repository at this point
Copy the full SHA 6f9f637View commit details -
Configuration menu - View commit details
-
Copy full SHA for f29329d - Browse repository at this point
Copy the full SHA f29329dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a36ae1 - Browse repository at this point
Copy the full SHA 0a36ae1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58929bd - Browse repository at this point
Copy the full SHA 58929bdView commit details
Commits on Mar 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1ae956d - Browse repository at this point
Copy the full SHA 1ae956dView commit details
Commits on Apr 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fdf1204 - Browse repository at this point
Copy the full SHA fdf1204View commit details
Commits on Apr 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4c4dd99 - Browse repository at this point
Copy the full SHA 4c4dd99View commit details
Commits on Apr 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9338820 - Browse repository at this point
Copy the full SHA 9338820View commit details
Commits on Apr 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2b438ee - Browse repository at this point
Copy the full SHA 2b438eeView commit details
Commits on Apr 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fca9135 - Browse repository at this point
Copy the full SHA fca9135View commit details
Commits on Apr 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1b864c9 - Browse repository at this point
Copy the full SHA 1b864c9View commit details
Commits on Apr 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for afd0161 - Browse repository at this point
Copy the full SHA afd0161View commit details
Commits on Apr 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 13c6580 - Browse repository at this point
Copy the full SHA 13c6580View commit details
Commits on Apr 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 169b88e - Browse repository at this point
Copy the full SHA 169b88eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e73131c - Browse repository at this point
Copy the full SHA e73131cView commit details
Commits on Apr 17, 2024
-
change costmatrix max_distance threshold to a distance threshold inst…
…ead of duration (#4674)
Configuration menu - View commit details
-
Copy full SHA for 58241a2 - Browse repository at this point
Copy the full SHA 58241a2View commit details
Commits on Apr 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c835e2c - Browse repository at this point
Copy the full SHA c835e2cView commit details
Commits on Apr 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c8f4773 - Browse repository at this point
Copy the full SHA c8f4773View commit details
Commits on Apr 23, 2024
-
label third_party includes as -isystem in test/CMakeLists.txt (#4698)
Co-authored-by: Michael Kirk <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 56785d0 - Browse repository at this point
Copy the full SHA 56785d0View commit details
Commits on Apr 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 812383f - Browse repository at this point
Copy the full SHA 812383fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9888d8e - Browse repository at this point
Copy the full SHA 9888d8eView commit details
Commits on Apr 25, 2024
-
Correctly set has_highway, has_ferry and has_toll attributes when dir…
…ections_type is set to none (#4706)
Configuration menu - View commit details
-
Copy full SHA for 16fecc1 - Browse repository at this point
Copy the full SHA 16fecc1View commit details
Commits on May 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0636e37 - Browse repository at this point
Copy the full SHA 0636e37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 651a515 - Browse repository at this point
Copy the full SHA 651a515View commit details
Commits on May 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 629f0dd - Browse repository at this point
Copy the full SHA 629f0ddView commit details
Commits on May 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1594fe9 - Browse repository at this point
Copy the full SHA 1594fe9View commit details
Commits on May 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 76f316c - Browse repository at this point
Copy the full SHA 76f316cView commit details -
auto-update the fossgis instances (#4717)
Co-authored-by: Christian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6fbe96e - Browse repository at this point
Copy the full SHA 6fbe96eView commit details
Commits on May 10, 2024
-
add some error communication & handling to
valhalla_ingest_transit
(#……4710) Co-authored-by: Christian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 26cfae4 - Browse repository at this point
Copy the full SHA 26cfae4View commit details
Commits on May 13, 2024
-
Fix inconsistency in graph.lua for motor_vehicle_node (#4724)
Co-authored-by: Christian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3463f1a - Browse repository at this point
Copy the full SHA 3463f1aView commit details
Commits on May 14, 2024
-
fix echo statement for linux/macos in building.md (#4730)
Co-authored-by: Martin Schlossarek <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c14d3ac - Browse repository at this point
Copy the full SHA c14d3acView commit details
Commits on Jun 4, 2024
-
Removed voice & banner instructions from last step and added ssmlAnno…
…uncements (#4644) Co-authored-by: Christian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 78c1701 - Browse repository at this point
Copy the full SHA 78c1701View commit details
Commits on Jun 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4f6ef05 - Browse repository at this point
Copy the full SHA 4f6ef05View commit details -
Configuration menu - View commit details
-
Copy full SHA for 48b339b - Browse repository at this point
Copy the full SHA 48b339bView commit details
Commits on Jun 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 950b4c4 - Browse repository at this point
Copy the full SHA 950b4c4View commit details
Commits on Jun 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2985c08 - Browse repository at this point
Copy the full SHA 2985c08View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7be6e23 - Browse repository at this point
Copy the full SHA 7be6e23View commit details
Commits on Jun 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7725f8a - Browse repository at this point
Copy the full SHA 7725f8aView commit details
Commits on Jul 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f25bbf4 - Browse repository at this point
Copy the full SHA f25bbf4View commit details -
Configuration menu - View commit details
-
Copy full SHA for cbb4e98 - Browse repository at this point
Copy the full SHA cbb4e98View commit details
Commits on Jul 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 45bd34a - Browse repository at this point
Copy the full SHA 45bd34aView commit details
Commits on Jul 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bfc3460 - Browse repository at this point
Copy the full SHA bfc3460View commit details
Commits on Jul 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 38fc9ef - Browse repository at this point
Copy the full SHA 38fc9efView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9725261 - Browse repository at this point
Copy the full SHA 9725261View commit details
Commits on Jul 22, 2024
-
fix trivial route for CostMatrix (#4634)
Co-authored-by: Christian Beiwinkel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 66bb9a7 - Browse repository at this point
Copy the full SHA 66bb9a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5e695f - Browse repository at this point
Copy the full SHA e5e695fView commit details
Commits on Jul 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1b5d6f0 - Browse repository at this point
Copy the full SHA 1b5d6f0View commit details
Commits on Jul 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 270163c - Browse repository at this point
Copy the full SHA 270163cView commit details
Commits on Jul 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5c1eb84 - Browse repository at this point
Copy the full SHA 5c1eb84View commit details
Commits on Jul 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2272caf - Browse repository at this point
Copy the full SHA 2272cafView commit details
Commits on Aug 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 94745de - Browse repository at this point
Copy the full SHA 94745deView commit details
Commits on Aug 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f0d77e0 - Browse repository at this point
Copy the full SHA f0d77e0View commit details
Commits on Aug 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f580be3 - Browse repository at this point
Copy the full SHA f580be3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58a289d - Browse repository at this point
Copy the full SHA 58a289dView commit details
Commits on Aug 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e0f33e6 - Browse repository at this point
Copy the full SHA e0f33e6View commit details
Commits on Aug 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 75cef6a - Browse repository at this point
Copy the full SHA 75cef6aView commit details
Commits on Aug 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8748f41 - Browse repository at this point
Copy the full SHA 8748f41View commit details
Commits on Aug 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5faeff8 - Browse repository at this point
Copy the full SHA 5faeff8View commit details
Commits on Aug 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b05c9d0 - Browse repository at this point
Copy the full SHA b05c9d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 743d5c9 - Browse repository at this point
Copy the full SHA 743d5c9View commit details
Commits on Aug 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c435717 - Browse repository at this point
Copy the full SHA c435717View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb8c8e0 - Browse repository at this point
Copy the full SHA bb8c8e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c79f86 - Browse repository at this point
Copy the full SHA 6c79f86View commit details -
Configuration menu - View commit details
-
Copy full SHA for 572c334 - Browse repository at this point
Copy the full SHA 572c334View commit details
Commits on Aug 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fdcbb2c - Browse repository at this point
Copy the full SHA fdcbb2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e39ce9c - Browse repository at this point
Copy the full SHA e39ce9cView commit details
Commits on Aug 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5f4f4e9 - Browse repository at this point
Copy the full SHA 5f4f4e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5354107 - Browse repository at this point
Copy the full SHA 5354107View commit details
Commits on Sep 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for aba45e1 - Browse repository at this point
Copy the full SHA aba45e1View commit details
Commits on Sep 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 35ba52b - Browse repository at this point
Copy the full SHA 35ba52bView commit details
Commits on Sep 11, 2024
-
Provide conditional speed limits from "maxspeed:conditional" in `/loc…
…ate` and proto `/route` responses (#4851)
Configuration menu - View commit details
-
Copy full SHA for 5a84979 - Browse repository at this point
Copy the full SHA 5a84979View commit details
Commits on Sep 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3a38504 - Browse repository at this point
Copy the full SHA 3a38504View commit details
Commits on Sep 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 523847c - Browse repository at this point
Copy the full SHA 523847cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bdfc5e - Browse repository at this point
Copy the full SHA 3bdfc5eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a1f2b3 - Browse repository at this point
Copy the full SHA 9a1f2b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6de753 - Browse repository at this point
Copy the full SHA d6de753View commit details -
Configuration menu - View commit details
-
Copy full SHA for ca3c2f0 - Browse repository at this point
Copy the full SHA ca3c2f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d311dc - Browse repository at this point
Copy the full SHA 4d311dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for c411feb - Browse repository at this point
Copy the full SHA c411febView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac0cc3d - Browse repository at this point
Copy the full SHA ac0cc3dView commit details
Commits on Sep 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5f48bfa - Browse repository at this point
Copy the full SHA 5f48bfaView commit details
Commits on Sep 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0c84812 - Browse repository at this point
Copy the full SHA 0c84812View commit details
Commits on Sep 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for be5a4d5 - Browse repository at this point
Copy the full SHA be5a4d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a01d80c - Browse repository at this point
Copy the full SHA a01d80cView commit details
Commits on Oct 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e3118f0 - Browse repository at this point
Copy the full SHA e3118f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for da25217 - Browse repository at this point
Copy the full SHA da25217View commit details
Commits on Oct 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7516a10 - Browse repository at this point
Copy the full SHA 7516a10View commit details -
Configuration menu - View commit details
-
Copy full SHA for d377c8a - Browse repository at this point
Copy the full SHA d377c8aView commit details
Commits on Oct 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1967e33 - Browse repository at this point
Copy the full SHA 1967e33View commit details
Commits on Oct 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b71dc96 - Browse repository at this point
Copy the full SHA b71dc96View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40e898e - Browse repository at this point
Copy the full SHA 40e898eView commit details
Commits on Oct 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 21dd8eb - Browse repository at this point
Copy the full SHA 21dd8ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 531206c - Browse repository at this point
Copy the full SHA 531206cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8423bc0 - Browse repository at this point
Copy the full SHA 8423bc0View commit details
Commits on Oct 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 329c4e6 - Browse repository at this point
Copy the full SHA 329c4e6View commit details
Commits on Oct 31, 2024
-
Hard avoids highway ferry (#4524)
Co-authored-by: amaury.zarzelli <[email protected]> Co-authored-by: adrika.mukherjee <[email protected]> Co-authored-by: Johannes Nonnenmacher <[email protected]> Co-authored-by: Janusz <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a9071e3 - Browse repository at this point
Copy the full SHA a9071e3View commit details -
Optionally add admin crossings to route response (#4941)
Co-authored-by: Kevin Kreiser <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 18984b4 - Browse repository at this point
Copy the full SHA 18984b4View commit details