-
-
Save ryantm/82e852d822486a83285e755488f6d056 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/nix/store/y0779ksgxhvysi6ha717axl7v06grmar-osrm-backend-5.17.2 | |
├── bin | |
│ ├── osrm-components | |
│ ├── osrm-contract | |
│ ├── osrm-customize | |
│ ├── osrm-datastore | |
│ ├── osrm-extract | |
│ ├── osrm-partition | |
│ └── osrm-routed | |
├── include | |
│ ├── mapbox | |
│ │ ├── optional.hpp | |
│ │ ├── recursive_wrapper.hpp | |
│ │ ├── variant.hpp | |
│ │ ├── variant_io.hpp | |
│ │ └── variant_visitor.hpp | |
│ └── osrm | |
│ ├── approach.hpp | |
│ ├── bearing.hpp | |
│ ├── contractor | |
│ │ ├── contractor_config.hpp | |
│ │ └── contractor.hpp | |
│ ├── contractor_config.hpp | |
│ ├── contractor.hpp | |
│ ├── coordinate.hpp | |
│ ├── customizer_config.hpp | |
│ ├── customizer.hpp | |
│ ├── engine | |
│ │ ├── api | |
│ │ │ ├── base_parameters.hpp | |
│ │ │ ├── match_parameters.hpp | |
│ │ │ ├── nearest_parameters.hpp | |
│ │ │ ├── route_parameters.hpp | |
│ │ │ ├── table_parameters.hpp | |
│ │ │ ├── tile_parameters.hpp | |
│ │ │ └── trip_parameters.hpp | |
│ │ ├── approach.hpp | |
│ │ ├── bearing.hpp | |
│ │ ├── engine_config.hpp | |
│ │ ├── hint.hpp | |
│ │ ├── phantom_node.hpp | |
│ │ └── status.hpp | |
│ ├── engine_config.hpp | |
│ ├── error_codes.hpp | |
│ ├── exception.hpp | |
│ ├── extractor | |
│ │ ├── extractor_config.hpp | |
│ │ ├── extractor.hpp | |
│ │ ├── io_config.hpp | |
│ │ └── travel_mode.hpp | |
│ ├── extractor_config.hpp | |
│ ├── extractor.hpp | |
│ ├── json_container.hpp | |
│ ├── match_parameters.hpp | |
│ ├── nearest_parameters.hpp | |
│ ├── osrm_fwd.hpp | |
│ ├── osrm.hpp | |
│ ├── partitioner | |
│ │ ├── partitioner_config.hpp | |
│ │ └── partitioner.hpp | |
│ ├── partitioner_config.hpp | |
│ ├── partitioner.hpp | |
│ ├── route_parameters.hpp | |
│ ├── status.hpp | |
│ ├── storage | |
│ │ ├── io_config.hpp | |
│ │ ├── storage_config.hpp | |
│ │ └── storage.hpp | |
│ ├── storage_config.hpp | |
│ ├── table_parameters.hpp | |
│ ├── tile_parameters.hpp | |
│ ├── trip_parameters.hpp | |
│ └── util | |
│ ├── alias.hpp | |
│ ├── bearing.hpp | |
│ ├── coordinate.hpp | |
│ ├── exception.hpp | |
│ ├── json_container.hpp | |
│ └── typedefs.hpp | |
├── lib | |
│ ├── libosrm.a | |
│ ├── libosrm_contract.a | |
│ ├── libosrm_customize.a | |
│ ├── libosrm_extract.a | |
│ ├── libosrm_partition.a | |
│ ├── libosrm_store.a | |
│ ├── libosrm_update.a | |
│ └── pkgconfig | |
│ └── libosrm.pc | |
└── share | |
├── osrm | |
│ └── profiles | |
│ ├── bicycle.lua | |
│ ├── car.lua | |
│ ├── debug_example.lua | |
│ ├── examples | |
│ │ └── postgis.lua | |
│ ├── foot.lua | |
│ ├── lib | |
│ │ ├── access.lua | |
│ │ ├── destination.lua | |
│ │ ├── guidance.lua | |
│ │ ├── maxspeed.lua | |
│ │ ├── measure.lua | |
│ │ ├── pprint.lua | |
│ │ ├── profile_debugger.lua | |
│ │ ├── relations.lua | |
│ │ ├── sequence.lua | |
│ │ ├── set.lua | |
│ │ ├── tags.lua | |
│ │ ├── utils.lua | |
│ │ └── way_handlers.lua | |
│ ├── rasterbotinterp.lua | |
│ ├── rasterbot.lua | |
│ ├── testbot.lua | |
│ ├── test.lua | |
│ └── turnbot.lua | |
└── osrm-backend | |
└── profiles | |
├── bicycle.lua | |
├── car.lua | |
├── debug_example.lua | |
├── examples | |
│ └── postgis.lua | |
├── foot.lua | |
├── lib | |
│ ├── access.lua | |
│ ├── destination.lua | |
│ ├── guidance.lua | |
│ ├── maxspeed.lua | |
│ ├── measure.lua | |
│ ├── pprint.lua | |
│ ├── profile_debugger.lua | |
│ ├── relations.lua | |
│ ├── sequence.lua | |
│ ├── set.lua | |
│ ├── tags.lua | |
│ ├── utils.lua | |
│ └── way_handlers.lua | |
├── rasterbotinterp.lua | |
├── rasterbot.lua | |
├── testbot.lua | |
├── test.lua | |
└── turnbot.lua | |
22 directories, 121 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment