We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c57d51b commit 644b28aCopy full SHA for 644b28a
README.md
@@ -34,7 +34,13 @@ valhalla_build_tiles -c valhalla.json planet.pbf
34
find valhalla_tiles | sort -n | tar cf tiles.tar --no-recursion -T -
35
36
#make some osmlr segments
37
-LD_LIBRARY_PATH=/usr/lib:/usr/local/lib osmlr tiles.tar
+LD_LIBRARY_PATH=/usr/lib:/usr/local/lib osmlr -m 1 -T ${PWD}/osmlr_tiles valhalla.json
38
+
39
+# -j 2 uses two threads for association process (use more or fewer as available cores permit)
40
+valhalla_associate_segments -t ${PWD}/osmlr_tiles -j 2 --config valhalla.json
41
42
+# rebuild tar with traffic segement associated tiles
43
+find valhalla_tiles | sort -n | tar rf tiles.tar --no-recursion -T -
44
45
#HAVE FUN!
46
```
0 commit comments