Skip to content

Commit

Permalink
docs(routing): documentation for pt routing config
Browse files Browse the repository at this point in the history
  • Loading branch information
kschrab committed Dec 2, 2024
1 parent 8842528 commit 9c26811
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,29 @@

public class CPublicTransportRouting {

/**
* Declares if PT routing is enabled (default=false).
*/
public boolean enabled = false;

/**
* The path to the OSM file which is used to calculate walking between PT legs.
*/
public String osmFile = "map.osm";

/**
* The path to the GTFS file (ZIP archive) which contains the whole PT schedule.
*/
public String gtfsFile = "gtfs.zip";

/**
* The time in ISO format at which the simulation should start.
* Example format: 2024-11-27T10:15:30
*/
public String scheduleDateTime = "2024-12-03T10:15:30";

/**
* The time zone of the location where the PT system is implemented.
*/
public String timeZone = "ECT";
}

0 comments on commit 9c26811

Please sign in to comment.