Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | Remove some redundant comments |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | origin/master |
Files: | files | file ages | folders |
SHA3-256: |
0c4224822a68b30e869102d739708794 |
User & Date: | base@atomicules.co.uk 2014-12-14 21:54:02 |
2014-12-26
| ||
22:15 |
Add basic implementation for selecting between route geometries
Not a great implementation, but it works. If no route geometry choice is | |
2014-12-17
| ||
22:46 |
Add basic implementation for selecting between route geometries
Not a great implementation, but it works. If no route geometry choice is | |
2014-12-14
| ||
21:54 | Remove some redundant comments check-in: 0c4224822a user: base@atomicules.co.uk tags: origin/master, trunk | |
21:53 | Update README to suit osrm branch check-in: ee1cd9e7e0 user: base@atomicules.co.uk tags: origin/master, trunk | |
Changes to osrm.erl.
1 2 3 4 5 | -module(osrm). -export([get_route/1, get_route/2, read_route/0]). -import(polyline, [decode/1]). %https://github.com/Project-OSRM/osrm-backend/wiki/Server-api | < < < | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 | -module(osrm). -export([get_route/1, get_route/2, read_route/0]). -import(polyline, [decode/1]). %https://github.com/Project-OSRM/osrm-backend/wiki/Server-api %For now, get weather for one location (probably good enough as relatively short distances weather wise; ultimately consider time as well?) %To get lats and longs could also do a query for here: http://www.uk-postcodes.com/ (json again) -define(BASE_URL, "http://router.project-osrm.org/"). -define(VIAROUTE, "viaroute"). |
︙ | ︙ |