-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added foot osrm and isochrone server
- Loading branch information
1 parent
8918f3f
commit d74afad
Showing
3 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ OSRM=./node_modules/osrm/lib/binding/osrm-routed | |
echo "expecting OSRM to be in $OSRM" | ||
|
||
if ! [ -x "$(command -v $OSRM)" ]; then | ||
echo "Error: Missing OSRM. Install using 'npm install [email protected]'\n" | ||
echo "Error: Missing OSRM. Install dependencies with 'npm install'\n" | ||
exit 1 | ||
fi | ||
|
||
|
@@ -19,5 +19,6 @@ $OSRM -p 5001 data/lts1/data.osrm & | |
$OSRM -p 5002 data/lts2/data.osrm & | ||
$OSRM -p 5003 data/lts3/data.osrm & | ||
$OSRM -p 5004 data/lts4/data.osrm & | ||
$OSRM -p 5005 data/foot/data.osrm & | ||
|
||
node iso-server.js & |