Skip to content

Commit ce56c0b

Browse files
committed
add section on HTML annotation reports to docs
addresses opentripplanner#2546
1 parent c9147dc commit ce56c0b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

docs/Troubleshooting-Routing.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Troubleshooting Routing
22

3+
## Graph Builder Annotations
4+
5+
When you build a graph, OTP may encounter clearly incorrect or ambiguous data, or may detect less severe but potentially problematic situations in the input data. Most such problems result in a "graph builder annotation" being added to the graph. Many annotations are logged to the console while the graph, but some that might yield too many messages may be recorded as annotations without being logged. At the end of the graph build process, OTP prints a summary of all the annotations it added to the graph, like the following:
6+
7+
```
8+
11:35:57.515 INFO (Graph.java:970) Summary (number of each type of annotation):
9+
11:35:57.518 INFO (Graph.java:976) TurnRestrictionBad - 560
10+
11:35:57.518 INFO (Graph.java:976) TurnRestrictionException - 15
11+
11:35:57.518 INFO (Graph.java:976) StopLinkedTooFar - 22
12+
11:35:57.518 INFO (Graph.java:976) HopSpeedSlow - 22
13+
11:35:57.518 INFO (Graph.java:976) Graphwide - 1
14+
11:35:57.518 INFO (Graph.java:976) GraphConnectivity - 407
15+
11:35:57.519 INFO (Graph.java:976) ParkAndRideUnlinked - 1
16+
11:35:57.519 INFO (Graph.java:976) StopNotLinkedForTransfers - 31
17+
11:35:57.519 INFO (Graph.java:976) NoFutureDates - 1
18+
```
19+
20+
The full set of annotations can be written out to an HTML report for closer inspection. To enable the creation of these (potentially voluminous) HTML reports, add `"htmlAnnotations" : true` to your graph builder JSON configuration.
21+
22+
If the graph is saved to a file, these annotations are saved with it and can be examined later. Currently the only tool for doing this is the "Graph Visualizer", which is not particularly well maintained and is intended for use by software developers familiar with OTP who can patch up the code as needed.
23+
24+
325
## Debug layers
426

527
OpenTripplanner has option to ease debugging problems with graph. Older option is graph visualizer.

0 commit comments

Comments
 (0)