This is a fork of OTP.
We want to experiment with using OTP's raptor implementation as a standalone library.
- Requires Maven >= 3.6.6
- Import the project as a Maven project or from version control (GitHub)
- Run
mvn install
- Execute
Build Project
in IntelliJ - Reload all Maven projects (in Maven tool window)
Now everything should compile file and tests can be run in the IDE.
Goal: Execute a few queries on the OTP Raptor API. Try to load timetable data via GTFS import.
Steps:
- Fork the OTP GH project.
- Start with a simple test case (or a few) using the existing
RaptorModuleTestCase
mechanism but our own scenario. - Possible approach: Get rid of the test support code like
RaptorModuleTestCase
so that in the end we useRaptorService
directly. Alternative: BuildRaptorService
use up from scratch. - Create timetable for our scenario as GTFS files.
- Import GTFS files for running the test. Use OTP’s approach or an external library.
See the original README for more information about the OpenTripPlanner project.