├── .gitignore ├── 01-installing-and-running-ui └── README.md ├── 02-otp-and-graph-building ├── .dockerignore ├── .env ├── Dockerfile ├── README.md ├── build-config.json ├── docker-compose.yml ├── otp-config.json └── router-config.json ├── 03-running-otp-and-digitransit ├── .dockerignore ├── .env ├── Dockerfile ├── README.md ├── build-config.json ├── docker-compose.yml ├── otp-config.json └── router-config.json ├── 04-adding-geojson-layers ├── README.md └── rt-layers │ ├── bicycle-parking.geojson │ ├── bicycleinfrastructure.geojson │ ├── car-parking.geojson │ ├── charging.geojson │ └── toilet.geojson ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | logs/ 2 | TODOs.md 3 | -------------------------------------------------------------------------------- /01-installing-and-running-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/01-installing-and-running-ui/README.md -------------------------------------------------------------------------------- /02-otp-and-graph-building/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/.dockerignore -------------------------------------------------------------------------------- /02-otp-and-graph-building/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/.env -------------------------------------------------------------------------------- /02-otp-and-graph-building/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/Dockerfile -------------------------------------------------------------------------------- /02-otp-and-graph-building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/README.md -------------------------------------------------------------------------------- /02-otp-and-graph-building/build-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/build-config.json -------------------------------------------------------------------------------- /02-otp-and-graph-building/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/docker-compose.yml -------------------------------------------------------------------------------- /02-otp-and-graph-building/otp-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/otp-config.json -------------------------------------------------------------------------------- /02-otp-and-graph-building/router-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/02-otp-and-graph-building/router-config.json -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/.dockerignore -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/.env -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/Dockerfile -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/README.md -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/build-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/build-config.json -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/docker-compose.yml -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/otp-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/otp-config.json -------------------------------------------------------------------------------- /03-running-otp-and-digitransit/router-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/03-running-otp-and-digitransit/router-config.json -------------------------------------------------------------------------------- /04-adding-geojson-layers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/04-adding-geojson-layers/README.md -------------------------------------------------------------------------------- /04-adding-geojson-layers/rt-layers/bicycle-parking.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/04-adding-geojson-layers/rt-layers/bicycle-parking.geojson -------------------------------------------------------------------------------- /04-adding-geojson-layers/rt-layers/bicycleinfrastructure.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/04-adding-geojson-layers/rt-layers/bicycleinfrastructure.geojson -------------------------------------------------------------------------------- /04-adding-geojson-layers/rt-layers/car-parking.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/04-adding-geojson-layers/rt-layers/car-parking.geojson -------------------------------------------------------------------------------- /04-adding-geojson-layers/rt-layers/charging.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/04-adding-geojson-layers/rt-layers/charging.geojson -------------------------------------------------------------------------------- /04-adding-geojson-layers/rt-layers/toilet.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/04-adding-geojson-layers/rt-layers/toilet.geojson -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stadtnavi/stadtnavi-tutorial/HEAD/README.md --------------------------------------------------------------------------------