edited crash_data_summaries.Rmd among other changes
This commit is contained in:
parent
8d3ae6e1cc
commit
ebf40f7e63
23 changed files with 112 additions and 2806 deletions
7
docker/.gitignore
vendored
7
docker/.gitignore
vendored
|
@ -2,6 +2,7 @@
|
|||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
!docker-compose.yml
|
||||
!data-raw/
|
||||
!data-foot/
|
||||
|
||||
# and the osrm directory
|
||||
!osrm/
|
||||
|
||||
|
|
7
docker/osrm/.gitignore
vendored
Normal file
7
docker/osrm/.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
!docker-compose.yml
|
||||
!data-raw/
|
||||
!data-foot/
|
4
docker/osrm/data-foot/.gitignore
vendored
Normal file
4
docker/osrm/data-foot/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
4
docker/osrm/data-raw/.gitignore
vendored
Normal file
4
docker/osrm/data-raw/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
17
docker/osrm/docker-compose.yml
Normal file
17
docker/osrm/docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
services:
|
||||
osrm-backend-foot:
|
||||
container_name: osrm-backend-foot
|
||||
ports:
|
||||
- 5000:5000
|
||||
volumes:
|
||||
- ./data-foot:/data
|
||||
- ./data-raw/wisconsin-latest.osm.pbf:/data/wisconsin-latest.osm.pbf
|
||||
image: osrm/osrm-backend
|
||||
command: osrm-routed --algorithm mld /data/wisconsin-latest.osrm
|
||||
osrm-frontend-foot:
|
||||
ports:
|
||||
- 9966:9966
|
||||
environment:
|
||||
OSRM_BACKEND: 'http://localhost:5000'
|
||||
image: osrm/osrm-frontend
|
Loading…
Add table
Add a link
Reference in a new issue