From 46a347c5339e79a0e7d3123f8118bf8bbe64db42 Mon Sep 17 00:00:00 2001 From: Leonard Ehrenfried Date: Wed, 27 Sep 2023 17:26:04 +0200 Subject: [PATCH] Use correct CARPOOL mode range in docs --- docs/RoutingModes.md | 2 +- .../org/opentripplanner/transit/model/basic/TransitMode.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/RoutingModes.md b/docs/RoutingModes.md index 88148d370e5..6267b4b0321 100644 --- a/docs/RoutingModes.md +++ b/docs/RoutingModes.md @@ -106,7 +106,7 @@ Used for street-level cable cars where the cable runs beneath the car. Private car trips shared with others. -This is currently not specified in GTFS so we use the mode type values 1500-1560 which are in the range of private taxis. +This is currently not specified in GTFS so we use the mode type values 1550-1560 which are in the range of private taxis.

COACH

diff --git a/src/main/java/org/opentripplanner/transit/model/basic/TransitMode.java b/src/main/java/org/opentripplanner/transit/model/basic/TransitMode.java index 1dfc87e03b9..e25cb435887 100644 --- a/src/main/java/org/opentripplanner/transit/model/basic/TransitMode.java +++ b/src/main/java/org/opentripplanner/transit/model/basic/TransitMode.java @@ -77,7 +77,7 @@ public String enumValueDescription() { case CARPOOL -> """ Private car trips shared with others. - This is currently not specified in GTFS so we use the mode type values 1500-1560 which are in the range of private taxis. + This is currently not specified in GTFS so we use the mode type values 1550-1560 which are in the range of private taxis. """; case TAXI -> "Using a taxi service"; };