edited crash_data_summaries.Rmd among other changes

This commit is contained in:
Ben Varick 2025-04-01 13:40:40 -05:00
parent 8d3ae6e1cc
commit ebf40f7e63
No known key found for this signature in database
23 changed files with 112 additions and 2806 deletions

7
docker/.gitignore vendored
View file

@ -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
View 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
View file

@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore

4
docker/osrm/data-raw/.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore

View 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