Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 3, 2019 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/3af9177cd0b89d3f9a0c3f3b6a1963a4 to your computer and use it in GitHub Desktop.
Save ryantm/3af9177cd0b89d3f9a0c3f3b6a1963a4 to your computer and use it in GitHub Desktop.
/nix/store/njdrpvrv7qlskwrah3679mwl83y32pc1-osrm-backend-5.21.0
├── 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