From 31d4eb93cd4886539ee0a0d5c15ae9eb1f91a666 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 12:33:18 -0500 Subject: [PATCH 01/14] Deprecate 'lane' lane types --- create-feed/examples/linestring_example.geojson | 10 +++++----- create-feed/examples/multipoint_example.geojson | 10 +++++----- create-feed/schemas/wzdx_vNext_feed.json | 10 +++++----- .../derived-from-its-standards/LaneType.md | 8 ++++---- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/create-feed/examples/linestring_example.geojson b/create-feed/examples/linestring_example.geojson index ad8dac46..d04d5b99 100644 --- a/create-feed/examples/linestring_example.geojson +++ b/create-feed/examples/linestring_example.geojson @@ -77,7 +77,7 @@ "order": 1, "lane_number": 1, "status": "open", - "type": "left-lane", + "type": "lane", "restrictions": [ { "restriction_type": "reduced-width", @@ -90,13 +90,13 @@ "order": 2, "lane_number": 2, "status": "closed", - "type": "middle-lane" + "type": "lane" }, { "order": 3, "lane_number": 3, "status": "closed", - "type": "right-lane" + "type": "lane" } ] }, @@ -308,7 +308,7 @@ "order": 1, "lane_number": 1, "status": "open", - "type": "left-lane", + "type": "lane", "restrictions": [ { "restriction_type": "no-trucks" @@ -319,7 +319,7 @@ "order": 2, "lane_number": 2, "status": "open", - "type": "right-lane" + "type": "lane" } ] }, diff --git a/create-feed/examples/multipoint_example.geojson b/create-feed/examples/multipoint_example.geojson index 53fd310e..80e3f7db 100644 --- a/create-feed/examples/multipoint_example.geojson +++ b/create-feed/examples/multipoint_example.geojson @@ -77,7 +77,7 @@ "order": 1, "lane_number": 1, "status": "open", - "type": "left-lane", + "type": "lane", "restrictions": [ { "restriction_type": "reduced-width", @@ -90,13 +90,13 @@ "order": 2, "lane_number": 2, "status": "closed", - "type": "middle-lane" + "type": "lane" }, { "order": 3, "lane_number": 3, "status": "closed", - "type": "right-lane" + "type": "lane" } ] }, @@ -157,7 +157,7 @@ "order": 1, "lane_number": 1, "status": "open", - "type": "left-lane", + "type": "lane", "restrictions": [ { "restriction_type": "no-trucks" @@ -168,7 +168,7 @@ "order": 2, "lane_number": 2, "status": "open", - "type": "right-lane" + "type": "lane" } ] }, diff --git a/create-feed/schemas/wzdx_vNext_feed.json b/create-feed/schemas/wzdx_vNext_feed.json index b858b8cd..f621f623 100644 --- a/create-feed/schemas/wzdx_vNext_feed.json +++ b/create-feed/schemas/wzdx_vNext_feed.json @@ -474,10 +474,6 @@ "title": "Lane Type Enumerated Type", "description": "An indication of the type of lane or shoulder", "enum": [ - "left-lane", - "right-lane", - "middle-lane", - "center-lane", "lane", "right-turning-lane", "left-turning-lane", @@ -501,7 +497,11 @@ "shoulder", "hov-lane", "reversible-lane", - "center-left-turn-lane" + "center-left-turn-lane", + "left-lane", + "right-lane", + "middle-lane", + "center-lane" ] }, "LaneRestrictionUnit": { diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index fa37c791..f143f57b 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -6,10 +6,6 @@ A description of the type of a lane on the roadway. ## Values WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description --- | --- | --- -`left-lane` | left-lane (8194) | The leftmost lane -`right-lane` | right-lane (8195) | The rightmost lane -`middle-lane` | middle-lanes (8197) | A lane that is not the rightmost or leftmost lane -`center-lane` | center-lane (8196) | The center-most lane when the total number of lanes is odd `lane` | | Generic lane type, intended to be used for regular, driveable lanes where `left-lane`, `right-lane`, and `middle-lane` are unsuitable (e.g. single-lane roadway) `right-turning-lane` | right-turning-lanes (8199) | A right lane where right turns are permissible `left-turning-lane` | left-turning-lanes (8200) | A left lane where left turns are permissible @@ -34,6 +30,10 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `alternating-flow-lane` | | A lane where signal or flagger controls lane flow `center-left-turn-lane` | | A lane in the center of a bidirectional roadway in which traffic from both directions pulls to make a left turn `reversible-lane` | | A lane in which traffic may travel in either direction, depending on certain conditions such as time of day +`left-lane` (DEPRECATED) | left-lane (8194) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The leftmost lane +`right-lane` (DEPRECATED) | right-lane (8195) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The rightmost lane +`middle-lane` (DEPRECATED) | middle-lanes (8197) | *This value is deprecated and will be removed in a future version; use `lane` instead* - A lane that is not the rightmost or leftmost lane +`center-lane` (DEPRECATED) | center-lane (8196) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The center-most lane when the total number of lanes is odd The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: From 3b0b3eac3ff84a6603bfe42093d747a48c176305 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 12:38:47 -0500 Subject: [PATCH 02/14] Deprecate 'shoulder' lane types --- create-feed/schemas/wzdx_vNext_feed.json | 6 +++--- .../enumerated-types/derived-from-its-standards/LaneType.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/create-feed/schemas/wzdx_vNext_feed.json b/create-feed/schemas/wzdx_vNext_feed.json index f621f623..a7183825 100644 --- a/create-feed/schemas/wzdx_vNext_feed.json +++ b/create-feed/schemas/wzdx_vNext_feed.json @@ -492,8 +492,6 @@ "sidewalk", "bike-lane", "alternating-flow-lane", - "right-shoulder", - "left-shoulder", "shoulder", "hov-lane", "reversible-lane", @@ -501,7 +499,9 @@ "left-lane", "right-lane", "middle-lane", - "center-lane" + "center-lane", + "right-shoulder", + "left-shoulder" ] }, "LaneRestrictionUnit": { diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index f143f57b..24e50515 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -24,8 +24,6 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `sidewalk` | sidewalk (8222) | The sidewalk or pedestrian way `bike-lane` | cycle-lane (8242) | Bike lane `shoulder` | | Generic shoulder; useful when the shoulder is neither left nor right (e.g. between HOV Lane and main roadway). It can also be used in place of `left-shoulder` or `right-shoulder`. -`right-shoulder` | right-shoulder (8219) | The outer shoulder or the rightmost shoulder -`left-shoulder` | left-shoulder (8220) | The inner shoulder or the leftmost shoulder `hov-lane` | hov-lanes (8233) | A high-occupancy vehicle lane `alternating-flow-lane` | | A lane where signal or flagger controls lane flow `center-left-turn-lane` | | A lane in the center of a bidirectional roadway in which traffic from both directions pulls to make a left turn @@ -34,6 +32,8 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `right-lane` (DEPRECATED) | right-lane (8195) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The rightmost lane `middle-lane` (DEPRECATED) | middle-lanes (8197) | *This value is deprecated and will be removed in a future version; use `lane` instead* - A lane that is not the rightmost or leftmost lane `center-lane` (DEPRECATED) | center-lane (8196) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The center-most lane when the total number of lanes is odd +`right-shoulder` (DEPRECATED) | right-shoulder (8219) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* The outer shoulder or the rightmost shoulder +`left-shoulder` (DEPRECATED) | left-shoulder (8220) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* The inner shoulder or the leftmost shoulder The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: From 792b7e00cb820a8fb671e94e23efcc3891928a3f Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 13:05:25 -0500 Subject: [PATCH 03/14] Update description for turning lanes to remove side reference --- .../enumerated-types/derived-from-its-standards/LaneType.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index 24e50515..bb852d7c 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -7,8 +7,8 @@ A description of the type of a lane on the roadway. WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description --- | --- | --- `lane` | | Generic lane type, intended to be used for regular, driveable lanes where `left-lane`, `right-lane`, and `middle-lane` are unsuitable (e.g. single-lane roadway) -`right-turning-lane` | right-turning-lanes (8199) | A right lane where right turns are permissible -`left-turning-lane` | left-turning-lanes (8200) | A left lane where left turns are permissible +`right-turning-lane` | right-turning-lanes (8199) | A lane where right turns are permissible +`left-turning-lane` | left-turning-lanes (8200) | A lane where left turns are permissible `right-exit-lane` | right-exit-lanes (8204) | The right lane where the lane provides an egress with a ramp `left-exit-lane` | left-exit-lanes (8205) | The left lane where the lane provides an egress with a ramp `right-merging-lane` | right-merging-lanes (8206) | The right lane where the lane ends with a gradual merge with the second most lane From 4d1fcd0725bcbbae62255e5f36b48b1c9b4d9b4b Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 14:08:03 -0500 Subject: [PATCH 04/14] Exit lane refactoring --- .../derived-from-its-standards/LaneType.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index bb852d7c..b28ec6d9 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -9,16 +9,12 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `lane` | | Generic lane type, intended to be used for regular, driveable lanes where `left-lane`, `right-lane`, and `middle-lane` are unsuitable (e.g. single-lane roadway) `right-turning-lane` | right-turning-lanes (8199) | A lane where right turns are permissible `left-turning-lane` | left-turning-lanes (8200) | A lane where left turns are permissible -`right-exit-lane` | right-exit-lanes (8204) | The right lane where the lane provides an egress with a ramp -`left-exit-lane` | left-exit-lanes (8205) | The left lane where the lane provides an egress with a ramp +`right-exit-lane` | right-exit-lanes (8204) | A lane or ramp that provides a right egress +`left-exit-lane` | left-exit-lanes (8205) | A lane or ramp that provides a left egress `right-merging-lane` | right-merging-lanes (8206) | The right lane where the lane ends with a gradual merge with the second most lane `left-merging-lane` | left-merging-lanes (8207) | The left lane where the lanes ends by a gradual merge with the second most left lane -`right-exit-ramp` | right-exit-ramp (8208) | The (first) exit ramp with an egress on the right in the direction of flow at an interchange -`right-second-exit-ramp` | right-second-exit-ramp (8209) | The second exit ramp with an egress on the right in the direction of flow at an interchange `right-entrance-ramp` | right-entrance-ramp (8210) | The (first) entrance ramp with an ingress on the right in the direction of flow at an interchange `right-second-entrance-ramp` | right-second-entrance-ramp (8211) | The second entrance ramp with an ingress on the right in the direction of flow at an interchange -`left-exit-ramp` | left-exit_ramp (8212) | The (first) exit ramp with an egress on the left in the direction of flow at an interchange -`left-second-exit-ramp` | left-second-exit-ramp (8213) | The second exit ramp with an egress on the left in the direction of flow at an interchange `left-entrance-ramp` | left-entrance-ramp (8214) | The (first) entrance ramp with an ingress on the left in the direction of flow at an interchange `left-second-entrance-ramp` | left-second-entrance-ramp (8215) | The second entrance ramp with an ingress on the left in the direction of flow at an interchange `sidewalk` | sidewalk (8222) | The sidewalk or pedestrian way @@ -32,8 +28,12 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `right-lane` (DEPRECATED) | right-lane (8195) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The rightmost lane `middle-lane` (DEPRECATED) | middle-lanes (8197) | *This value is deprecated and will be removed in a future version; use `lane` instead* - A lane that is not the rightmost or leftmost lane `center-lane` (DEPRECATED) | center-lane (8196) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The center-most lane when the total number of lanes is odd -`right-shoulder` (DEPRECATED) | right-shoulder (8219) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* The outer shoulder or the rightmost shoulder -`left-shoulder` (DEPRECATED) | left-shoulder (8220) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* The inner shoulder or the leftmost shoulder +`right-shoulder` (DEPRECATED) | right-shoulder (8219) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The outer shoulder or the rightmost shoulder +`left-shoulder` (DEPRECATED) | left-shoulder (8220) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The inner shoulder or the leftmost shoulder +`right-exit-ramp` (DEPRECATED) | right-exit-ramp (8208) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The (first) exit ramp with an egress on the right in the direction of flow at an interchange +`right-second-exit-ramp` (DEPRECATED) | right-second-exit-ramp (8209) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The second exit ramp with an egress on the right in the direction of flow at an interchange +`left-exit-ramp` (DEPRECATED) | left-exit_ramp (8212) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The (first) exit ramp with an egress on the left in the direction of flow at an interchange +`left-second-exit-ramp` (DEPRECATED) | left-second-exit-ramp (8213) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The second exit ramp with an egress on the left in the direction of flow at an interchange The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: From 55a32c82febb22de94c7bbf10f0178d8f22fa086 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 14:27:27 -0500 Subject: [PATCH 05/14] Entrance lane refactoring --- .../derived-from-its-standards/LaneType.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index b28ec6d9..7d2eae68 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -9,14 +9,12 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `lane` | | Generic lane type, intended to be used for regular, driveable lanes where `left-lane`, `right-lane`, and `middle-lane` are unsuitable (e.g. single-lane roadway) `right-turning-lane` | right-turning-lanes (8199) | A lane where right turns are permissible `left-turning-lane` | left-turning-lanes (8200) | A lane where left turns are permissible -`right-exit-lane` | right-exit-lanes (8204) | A lane or ramp that provides a right egress -`left-exit-lane` | left-exit-lanes (8205) | A lane or ramp that provides a left egress +`right-exit-lane` | | A lane or ramp with an egress on the right +`left-exit-lane` | | A lane or ramp with an egress on the left +`right-entrance-lane` | | A lane or ramp with an ingress on the right +`left-entrance-lane` | | A lane or ramp with an ingress on the left `right-merging-lane` | right-merging-lanes (8206) | The right lane where the lane ends with a gradual merge with the second most lane `left-merging-lane` | left-merging-lanes (8207) | The left lane where the lanes ends by a gradual merge with the second most left lane -`right-entrance-ramp` | right-entrance-ramp (8210) | The (first) entrance ramp with an ingress on the right in the direction of flow at an interchange -`right-second-entrance-ramp` | right-second-entrance-ramp (8211) | The second entrance ramp with an ingress on the right in the direction of flow at an interchange -`left-entrance-ramp` | left-entrance-ramp (8214) | The (first) entrance ramp with an ingress on the left in the direction of flow at an interchange -`left-second-entrance-ramp` | left-second-entrance-ramp (8215) | The second entrance ramp with an ingress on the left in the direction of flow at an interchange `sidewalk` | sidewalk (8222) | The sidewalk or pedestrian way `bike-lane` | cycle-lane (8242) | Bike lane `shoulder` | | Generic shoulder; useful when the shoulder is neither left nor right (e.g. between HOV Lane and main roadway). It can also be used in place of `left-shoulder` or `right-shoulder`. @@ -34,6 +32,10 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `right-second-exit-ramp` (DEPRECATED) | right-second-exit-ramp (8209) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The second exit ramp with an egress on the right in the direction of flow at an interchange `left-exit-ramp` (DEPRECATED) | left-exit_ramp (8212) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The (first) exit ramp with an egress on the left in the direction of flow at an interchange `left-second-exit-ramp` (DEPRECATED) | left-second-exit-ramp (8213) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The second exit ramp with an egress on the left in the direction of flow at an interchange +`right-entrance-ramp` (DEPRECATED) | right-entrance-ramp (8210) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The (first) entrance ramp with an ingress on the right in the direction of flow at an interchange +`right-second-entrance-ramp` (DEPRECATED) | right-second-entrance-ramp (8211) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The second entrance ramp with an ingress on the right in the direction of flow at an interchange +`left-entrance-ramp` (DEPRECATED) | left-entrance-ramp (8214) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The (first) entrance ramp with an ingress on the left in the direction of flow at an interchange +`left-second-entrance-ramp` (DEPRECATED) | left-second-entrance-ramp (8215) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The second entrance ramp with an ingress on the left in the direction of flow at an interchange The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: From 827aebcf499ff205b28484552b19ed5e652c0dec Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 14:34:53 -0500 Subject: [PATCH 06/14] Deprecate merging lane types --- .../enumerated-types/derived-from-its-standards/LaneType.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index 7d2eae68..7b7f475d 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -13,8 +13,6 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `left-exit-lane` | | A lane or ramp with an egress on the left `right-entrance-lane` | | A lane or ramp with an ingress on the right `left-entrance-lane` | | A lane or ramp with an ingress on the left -`right-merging-lane` | right-merging-lanes (8206) | The right lane where the lane ends with a gradual merge with the second most lane -`left-merging-lane` | left-merging-lanes (8207) | The left lane where the lanes ends by a gradual merge with the second most left lane `sidewalk` | sidewalk (8222) | The sidewalk or pedestrian way `bike-lane` | cycle-lane (8242) | Bike lane `shoulder` | | Generic shoulder; useful when the shoulder is neither left nor right (e.g. between HOV Lane and main roadway). It can also be used in place of `left-shoulder` or `right-shoulder`. @@ -35,7 +33,9 @@ WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description `right-entrance-ramp` (DEPRECATED) | right-entrance-ramp (8210) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The (first) entrance ramp with an ingress on the right in the direction of flow at an interchange `right-second-entrance-ramp` (DEPRECATED) | right-second-entrance-ramp (8211) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The second entrance ramp with an ingress on the right in the direction of flow at an interchange `left-entrance-ramp` (DEPRECATED) | left-entrance-ramp (8214) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The (first) entrance ramp with an ingress on the left in the direction of flow at an interchange -`left-second-entrance-ramp` (DEPRECATED) | left-second-entrance-ramp (8215) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The second entrance ramp with an ingress on the left in the direction of flow at an interchange +`left-second-entrance-ramp` (DEPRECATED) | left-second-entrance-ramp (8215) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The second entrance ramp with an ingress on the left in the direction of flow at an interchange +`right-merging-lane` (DEPRECATED) | right-merging-lanes (8206) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The right lane where the lane ends with a gradual merge with the second most lane +`left-merging-lane` (DEPRECATED) | left-merging-lanes (8207) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The left lane where the lanes ends by a gradual merge with the second most left lane The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: From c677893505196fba8558f509d0f6b38bad2f7f31 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 14:41:30 -0500 Subject: [PATCH 07/14] Reorganize table to deemphasize less relevant TMDD value --- .../derived-from-its-standards/LaneType.md | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index 7b7f475d..6c841b71 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -4,38 +4,38 @@ A description of the type of a lane on the roadway. ## Values -WZDx Lane Type | TMDD LaneRoadway Enumeration Value | Description +WZDx Lane Type | Description | TMDD LaneRoadway Enumeration Value --- | --- | --- -`lane` | | Generic lane type, intended to be used for regular, driveable lanes where `left-lane`, `right-lane`, and `middle-lane` are unsuitable (e.g. single-lane roadway) -`right-turning-lane` | right-turning-lanes (8199) | A lane where right turns are permissible -`left-turning-lane` | left-turning-lanes (8200) | A lane where left turns are permissible -`right-exit-lane` | | A lane or ramp with an egress on the right -`left-exit-lane` | | A lane or ramp with an egress on the left -`right-entrance-lane` | | A lane or ramp with an ingress on the right -`left-entrance-lane` | | A lane or ramp with an ingress on the left -`sidewalk` | sidewalk (8222) | The sidewalk or pedestrian way -`bike-lane` | cycle-lane (8242) | Bike lane -`shoulder` | | Generic shoulder; useful when the shoulder is neither left nor right (e.g. between HOV Lane and main roadway). It can also be used in place of `left-shoulder` or `right-shoulder`. -`hov-lane` | hov-lanes (8233) | A high-occupancy vehicle lane -`alternating-flow-lane` | | A lane where signal or flagger controls lane flow -`center-left-turn-lane` | | A lane in the center of a bidirectional roadway in which traffic from both directions pulls to make a left turn -`reversible-lane` | | A lane in which traffic may travel in either direction, depending on certain conditions such as time of day -`left-lane` (DEPRECATED) | left-lane (8194) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The leftmost lane -`right-lane` (DEPRECATED) | right-lane (8195) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The rightmost lane -`middle-lane` (DEPRECATED) | middle-lanes (8197) | *This value is deprecated and will be removed in a future version; use `lane` instead* - A lane that is not the rightmost or leftmost lane -`center-lane` (DEPRECATED) | center-lane (8196) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The center-most lane when the total number of lanes is odd -`right-shoulder` (DEPRECATED) | right-shoulder (8219) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The outer shoulder or the rightmost shoulder -`left-shoulder` (DEPRECATED) | left-shoulder (8220) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The inner shoulder or the leftmost shoulder -`right-exit-ramp` (DEPRECATED) | right-exit-ramp (8208) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The (first) exit ramp with an egress on the right in the direction of flow at an interchange -`right-second-exit-ramp` (DEPRECATED) | right-second-exit-ramp (8209) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The second exit ramp with an egress on the right in the direction of flow at an interchange -`left-exit-ramp` (DEPRECATED) | left-exit_ramp (8212) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The (first) exit ramp with an egress on the left in the direction of flow at an interchange -`left-second-exit-ramp` (DEPRECATED) | left-second-exit-ramp (8213) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The second exit ramp with an egress on the left in the direction of flow at an interchange -`right-entrance-ramp` (DEPRECATED) | right-entrance-ramp (8210) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The (first) entrance ramp with an ingress on the right in the direction of flow at an interchange -`right-second-entrance-ramp` (DEPRECATED) | right-second-entrance-ramp (8211) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The second entrance ramp with an ingress on the right in the direction of flow at an interchange -`left-entrance-ramp` (DEPRECATED) | left-entrance-ramp (8214) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The (first) entrance ramp with an ingress on the left in the direction of flow at an interchange -`left-second-entrance-ramp` (DEPRECATED) | left-second-entrance-ramp (8215) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The second entrance ramp with an ingress on the left in the direction of flow at an interchange -`right-merging-lane` (DEPRECATED) | right-merging-lanes (8206) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The right lane where the lane ends with a gradual merge with the second most lane -`left-merging-lane` (DEPRECATED) | left-merging-lanes (8207) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The left lane where the lanes ends by a gradual merge with the second most left lane +`lane` | Generic lane type, intended to be used for regular, driveable lanes where `left-lane`, `right-lane`, and `middle-lane` are unsuitable (e.g. single-lane roadway) | +`right-turning-lane` | A lane where right turns are permissible | right-turning-lanes (8199) +`left-turning-lane`| A lane where left turns are permissible | left-turning-lanes (8200) +`right-exit-lane` | A lane or ramp with an egress on the right | +`left-exit-lane` | A lane or ramp with an egress on the left | +`right-entrance-lane` | A lane or ramp with an ingress on the right | +`left-entrance-lane` | A lane or ramp with an ingress on the left | +`sidewalk` | A sidewalk or pedestrian way | sidewalk (8222) +`bike-lane` | A lane on the roadway for cyclists only | cycle-lane (8242) +`shoulder` | A Generic shoulder; useful when the shoulder is neither left nor right (e.g. between HOV Lane and main roadway). It can also be used in place of `left-shoulder` or `right-shoulder` | +`hov-lane` | A high-occupancy vehicle lane | hov-lanes (8233) +`alternating-flow-lane` | A lane where signal or flagger controls lane flow | +`center-left-turn-lane` | A lane in the center of a bidirectional roadway in which traffic from both directions pulls to make a left turn | +`reversible-lane` | A lane in which traffic may travel in either direction, depending on certain conditions such as time of day | +`left-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The leftmost lane | left-lane (8194) +`right-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The rightmost lane | right-lane (8195) +`middle-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - A lane that is not the rightmost or leftmost lane | middle-lanes (8197) +`center-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The center-most lane when the total number of lanes is odd | center-lane (8196) +`right-shoulder` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The outer shoulder or the rightmost shoulder | right-shoulder (8219) +`left-shoulder` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The inner shoulder or the leftmost shoulder | left-shoulder (8220) +`right-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The (first) exit ramp with an egress on the right in the direction of flow at an interchange | right-exit-ramp (8208) +`right-second-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The second exit ramp with an egress on the right in the direction of flow at an interchange | right-second-exit-ramp (8209) +`left-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The (first) exit ramp with an egress on the left in the direction of flow at an interchange | left-exit_ramp (8212) +`left-second-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The second exit ramp with an egress on the left in the direction of flow at an interchange | left-second-exit-ramp (8213) +`right-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The (first) entrance ramp with an ingress on the right in the direction of flow at an interchange | right-entrance-ramp (8210) +`right-second-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The second entrance ramp with an ingress on the right in the direction of flow at an interchange | right-second-entrance-ramp (8211) +`left-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The (first) entrance ramp with an ingress on the left in the direction of flow at an interchange | left-entrance-ramp (8214) +`left-second-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The second entrance ramp with an ingress on the left in the direction of flow at an interchange | left-second-entrance-ramp (8215) +`right-merging-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The right lane where the lane ends with a gradual merge with the second most lane | right-merging-lanes (8206) +`left-merging-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The left lane where the lanes ends by a gradual merge with the second most left lane | left-merging-lanes (8207) The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: From 659d5915b0d72f5491a82576b5aacfafcea3eb28 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 16 Dec 2020 14:49:20 -0500 Subject: [PATCH 08/14] Add entrance lanes to schema --- create-feed/schemas/wzdx_vNext_feed.json | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/create-feed/schemas/wzdx_vNext_feed.json b/create-feed/schemas/wzdx_vNext_feed.json index a7183825..6f5fceaa 100644 --- a/create-feed/schemas/wzdx_vNext_feed.json +++ b/create-feed/schemas/wzdx_vNext_feed.json @@ -479,16 +479,8 @@ "left-turning-lane", "right-exit-lane", "left-exit-lane", - "right-merging-lane", - "left-merging-lane", - "right-exit-ramp", - "right-second-exit-ramp", - "left-exit-ramp", - "left-second-exit-ramp", - "right-entrance-ramp", - "right-second-entrance-ramp", - "left-entrance-ramp", - "left-second-entrance-ramp", + "right-entrance-lane", + "left-entrance-lane", "sidewalk", "bike-lane", "alternating-flow-lane", @@ -501,7 +493,17 @@ "middle-lane", "center-lane", "right-shoulder", - "left-shoulder" + "left-shoulder", + "right-merging-lane", + "left-merging-lane", + "right-exit-ramp", + "right-second-exit-ramp", + "left-exit-ramp", + "left-second-exit-ramp", + "right-entrance-ramp", + "right-second-entrance-ramp", + "left-entrance-ramp", + "left-second-entrance-ramp" ] }, "LaneRestrictionUnit": { From c5662e7de852597902665d7b8aa307112cc6a9d9 Mon Sep 17 00:00:00 2001 From: chuehlien Date: Fri, 18 Dec 2020 12:15:59 -0500 Subject: [PATCH 09/14] Remove deprecated ramps and merging-lanes from LaneType enum in json schema --- create-feed/schemas/wzdx_vNext_feed.json | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/create-feed/schemas/wzdx_vNext_feed.json b/create-feed/schemas/wzdx_vNext_feed.json index 6f5fceaa..32792d9b 100644 --- a/create-feed/schemas/wzdx_vNext_feed.json +++ b/create-feed/schemas/wzdx_vNext_feed.json @@ -493,17 +493,7 @@ "middle-lane", "center-lane", "right-shoulder", - "left-shoulder", - "right-merging-lane", - "left-merging-lane", - "right-exit-ramp", - "right-second-exit-ramp", - "left-exit-ramp", - "left-second-exit-ramp", - "right-entrance-ramp", - "right-second-entrance-ramp", - "left-entrance-ramp", - "left-second-entrance-ramp" + "left-shoulder" ] }, "LaneRestrictionUnit": { From 879e7fe15cad1dc41095e6bea21faf2f0c402dcd Mon Sep 17 00:00:00 2001 From: chuehlien Date: Fri, 18 Dec 2020 12:22:51 -0500 Subject: [PATCH 10/14] Modify description of lane and shoulder LaneTypes to be more generic --- .../enumerated-types/derived-from-its-standards/LaneType.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index 6c841b71..20bff465 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -6,7 +6,7 @@ A description of the type of a lane on the roadway. ## Values WZDx Lane Type | Description | TMDD LaneRoadway Enumeration Value --- | --- | --- -`lane` | Generic lane type, intended to be used for regular, driveable lanes where `left-lane`, `right-lane`, and `middle-lane` are unsuitable (e.g. single-lane roadway) | +`lane` | Generic lane type, intended to be used for regular, driveable lanes | `right-turning-lane` | A lane where right turns are permissible | right-turning-lanes (8199) `left-turning-lane`| A lane where left turns are permissible | left-turning-lanes (8200) `right-exit-lane` | A lane or ramp with an egress on the right | @@ -15,7 +15,7 @@ WZDx Lane Type | Description | TMDD LaneRoadway Enumeration Value `left-entrance-lane` | A lane or ramp with an ingress on the left | `sidewalk` | A sidewalk or pedestrian way | sidewalk (8222) `bike-lane` | A lane on the roadway for cyclists only | cycle-lane (8242) -`shoulder` | A Generic shoulder; useful when the shoulder is neither left nor right (e.g. between HOV Lane and main roadway). It can also be used in place of `left-shoulder` or `right-shoulder` | +`shoulder` | A Generic shoulder | `hov-lane` | A high-occupancy vehicle lane | hov-lanes (8233) `alternating-flow-lane` | A lane where signal or flagger controls lane flow | `center-left-turn-lane` | A lane in the center of a bidirectional roadway in which traffic from both directions pulls to make a left turn | From 481f4b2e0d16ba7fec0bed821c7c99b66ceb0ed8 Mon Sep 17 00:00:00 2001 From: chuehlien Date: Mon, 21 Dec 2020 10:45:50 -0500 Subject: [PATCH 11/14] Re-add deprecated ramps and merging-lanes from LaneType enum in json --- create-feed/schemas/wzdx_vNext_feed.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/create-feed/schemas/wzdx_vNext_feed.json b/create-feed/schemas/wzdx_vNext_feed.json index 32792d9b..6f5fceaa 100644 --- a/create-feed/schemas/wzdx_vNext_feed.json +++ b/create-feed/schemas/wzdx_vNext_feed.json @@ -493,7 +493,17 @@ "middle-lane", "center-lane", "right-shoulder", - "left-shoulder" + "left-shoulder", + "right-merging-lane", + "left-merging-lane", + "right-exit-ramp", + "right-second-exit-ramp", + "left-exit-ramp", + "left-second-exit-ramp", + "right-entrance-ramp", + "right-second-entrance-ramp", + "left-entrance-ramp", + "left-second-entrance-ramp" ] }, "LaneRestrictionUnit": { From 221c2e627a9f646590ead46e83f9ded307743d08 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Fri, 15 Jan 2021 18:03:15 -0500 Subject: [PATCH 12/14] Overhaul PR to leave more ambiguous values, for now --- create-feed/schemas/wzdx_vNext_feed.json | 2 +- spec-content/enumerated-types/LaneStatus.md | 1 + .../derived-from-its-standards/LaneType.md | 26 +++++++++---------- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/create-feed/schemas/wzdx_vNext_feed.json b/create-feed/schemas/wzdx_vNext_feed.json index 6f5fceaa..bd233903 100644 --- a/create-feed/schemas/wzdx_vNext_feed.json +++ b/create-feed/schemas/wzdx_vNext_feed.json @@ -468,7 +468,7 @@ "LaneStatus": { "title": "Lane Status Enumerated Type", "description": "The status of the lane for the traveling public", - "enum": ["open", "closed", "shift-left", "shift-right", "merge-left", "merge-right", "alternating-one-way"] + "enum": ["open", "closed", "shift-left", "shift-right", "merge-left", "merge-right", "alternating-one-way", "reversible"] }, "LaneType": { "title": "Lane Type Enumerated Type", diff --git a/spec-content/enumerated-types/LaneStatus.md b/spec-content/enumerated-types/LaneStatus.md index f8c282cf..3b41be51 100644 --- a/spec-content/enumerated-types/LaneStatus.md +++ b/spec-content/enumerated-types/LaneStatus.md @@ -11,6 +11,7 @@ Value | Description `merge-left` | The lane gradually tapers while merging into the lane directly to the left `merge-right` | The lane gradually tapers while merging into the lane directly to the right `alternating-one-way` | The lane alternates the direction of travel via either automated controls or onsite personnel +`reversible` | Traffic may travel in either direction, depending on certain conditions such as time of day ## Used By Property | Object diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index 20bff465..ec2e38a7 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -6,36 +6,34 @@ A description of the type of a lane on the roadway. ## Values WZDx Lane Type | Description | TMDD LaneRoadway Enumeration Value --- | --- | --- -`lane` | Generic lane type, intended to be used for regular, driveable lanes | +`lane` | Generic lane type, intended to be used for normal, driveable lanes | `right-turning-lane` | A lane where right turns are permissible | right-turning-lanes (8199) `left-turning-lane`| A lane where left turns are permissible | left-turning-lanes (8200) -`right-exit-lane` | A lane or ramp with an egress on the right | -`left-exit-lane` | A lane or ramp with an egress on the left | -`right-entrance-lane` | A lane or ramp with an ingress on the right | -`left-entrance-lane` | A lane or ramp with an ingress on the left | +`right-exit-lane` | A lane with an egress on the right | +`left-exit-lane` | A lane with an egress on the left | +`left-exit-ramp`| An exit ramp with an egress on the left in the direction of flow at an interchange | left-exit_ramp (8212) +`right-exit-ramp` | An exit ramp with an egress on the right in the direction of flow at an interchange | right-exit-ramp (8208) +`right-entrance-ramp` | A lane or ramp with an ingress on the right | +`left-entrance-ramp` | A lane or ramp with an ingress on the left | `sidewalk` | A sidewalk or pedestrian way | sidewalk (8222) `bike-lane` | A lane on the roadway for cyclists only | cycle-lane (8242) -`shoulder` | A Generic shoulder | -`hov-lane` | A high-occupancy vehicle lane | hov-lanes (8233) -`alternating-flow-lane` | A lane where signal or flagger controls lane flow | -`center-left-turn-lane` | A lane in the center of a bidirectional roadway in which traffic from both directions pulls to make a left turn | -`reversible-lane` | A lane in which traffic may travel in either direction, depending on certain conditions such as time of day | +`shoulder` | A generic shoulder | +`center-left-turn-lane` | A lane in the center of a bidirectional roadway in which traffic from both directions uses to make a left turn | `left-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The leftmost lane | left-lane (8194) `right-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The rightmost lane | right-lane (8195) `middle-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - A lane that is not the rightmost or leftmost lane | middle-lanes (8197) `center-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `lane` instead* - The center-most lane when the total number of lanes is odd | center-lane (8196) `right-shoulder` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The outer shoulder or the rightmost shoulder | right-shoulder (8219) `left-shoulder` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `shoulder` instead* — The inner shoulder or the leftmost shoulder | left-shoulder (8220) -`right-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The (first) exit ramp with an egress on the right in the direction of flow at an interchange | right-exit-ramp (8208) `right-second-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-exit-lane` instead* — The second exit ramp with an egress on the right in the direction of flow at an interchange | right-second-exit-ramp (8209) -`left-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The (first) exit ramp with an egress on the left in the direction of flow at an interchange | left-exit_ramp (8212) `left-second-exit-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-exit-lane` instead* — The second exit ramp with an egress on the left in the direction of flow at an interchange | left-second-exit-ramp (8213) -`right-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The (first) entrance ramp with an ingress on the right in the direction of flow at an interchange | right-entrance-ramp (8210) `right-second-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `right-entrance-lane` instead* — The second entrance ramp with an ingress on the right in the direction of flow at an interchange | right-second-entrance-ramp (8211) -`left-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The (first) entrance ramp with an ingress on the left in the direction of flow at an interchange | left-entrance-ramp (8214) `left-second-entrance-ramp` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `left-entrance-lane` instead* — The second entrance ramp with an ingress on the left in the direction of flow at an interchange | left-second-entrance-ramp (8215) `right-merging-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The right lane where the lane ends with a gradual merge with the second most lane | right-merging-lanes (8206) `left-merging-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The left lane where the lanes ends by a gradual merge with the second most left lane | left-merging-lanes (8207) +`hov-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify hovs via the lane's `restrictions` property* — A high-occupancy vehicle lane | hov-lanes (8233) +`alternating-flow-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify alternating flow (alternating one way) via the lane's `status` property* — A lane where signal or flagger controls lane flow | +`reversible-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify reversible status via the lane's `status` property* — A lane in which traffic may travel in either direction, depending on certain conditions such as time of day | The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: From 308d9b8e6929e74096f65c801f576cd6e70a4939 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 3 Feb 2021 21:35:22 -0500 Subject: [PATCH 13/14] Add alternating-flow lane status --- create-feed/schemas/wzdx_vNext_feed.json | 2 +- spec-content/enumerated-types/LaneStatus.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/create-feed/schemas/wzdx_vNext_feed.json b/create-feed/schemas/wzdx_vNext_feed.json index bd233903..ddcd0e4c 100644 --- a/create-feed/schemas/wzdx_vNext_feed.json +++ b/create-feed/schemas/wzdx_vNext_feed.json @@ -468,7 +468,7 @@ "LaneStatus": { "title": "Lane Status Enumerated Type", "description": "The status of the lane for the traveling public", - "enum": ["open", "closed", "shift-left", "shift-right", "merge-left", "merge-right", "alternating-one-way", "reversible"] + "enum": ["open", "closed", "shift-left", "shift-right", "merge-left", "merge-right", "alternating-one-way", "alternating-flow"] }, "LaneType": { "title": "Lane Type Enumerated Type", diff --git a/spec-content/enumerated-types/LaneStatus.md b/spec-content/enumerated-types/LaneStatus.md index 3b41be51..41936da7 100644 --- a/spec-content/enumerated-types/LaneStatus.md +++ b/spec-content/enumerated-types/LaneStatus.md @@ -10,8 +10,8 @@ Value | Description `shift-right` | The lane shifts right from its current bearing and continues `merge-left` | The lane gradually tapers while merging into the lane directly to the left `merge-right` | The lane gradually tapers while merging into the lane directly to the right -`alternating-one-way` | The lane alternates the direction of travel via either automated controls or onsite personnel -`reversible` | Traffic may travel in either direction, depending on certain conditions such as time of day +`alternating-flow` | Traffic may travel in either direction, depending on certain conditions. Example conditions include time of day (e.g. reversible lanes), automated controls, or on-site personnel +`alternating-one-way` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `alternating-flow` instead* — The lane alternates the direction of travel via either automated controls or onsite personnel ## Used By Property | Object From 462cb622425774fff7d7980f3a43e9b12dddb9c0 Mon Sep 17 00:00:00 2001 From: Jacob Brady Date: Wed, 3 Feb 2021 21:37:43 -0500 Subject: [PATCH 14/14] Update deprecated description for clarity of alternative --- spec-content/enumerated-types/LaneStatus.md | 2 +- .../enumerated-types/derived-from-its-standards/LaneType.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spec-content/enumerated-types/LaneStatus.md b/spec-content/enumerated-types/LaneStatus.md index 41936da7..773003d3 100644 --- a/spec-content/enumerated-types/LaneStatus.md +++ b/spec-content/enumerated-types/LaneStatus.md @@ -9,7 +9,7 @@ Value | Description `shift-left` | The lane shifts left from its current bearing and continues `shift-right` | The lane shifts right from its current bearing and continues `merge-left` | The lane gradually tapers while merging into the lane directly to the left -`merge-right` | The lane gradually tapers while merging into the lane directly to the right +`merge-right` | The lane gradually tapers while merging into the lane directly to the right `alternating-flow` | Traffic may travel in either direction, depending on certain conditions. Example conditions include time of day (e.g. reversible lanes), automated controls, or on-site personnel `alternating-one-way` (DEPRECATED) | *This value is deprecated and will be removed in a future version; use `alternating-flow` instead* — The lane alternates the direction of travel via either automated controls or onsite personnel diff --git a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md index ec2e38a7..d5e337b1 100644 --- a/spec-content/enumerated-types/derived-from-its-standards/LaneType.md +++ b/spec-content/enumerated-types/derived-from-its-standards/LaneType.md @@ -32,8 +32,8 @@ WZDx Lane Type | Description | TMDD LaneRoadway Enumeration Value `right-merging-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The right lane where the lane ends with a gradual merge with the second most lane | right-merging-lanes (8206) `left-merging-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify merging lanes via the lane's `status` property* — The left lane where the lanes ends by a gradual merge with the second most left lane | left-merging-lanes (8207) `hov-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify hovs via the lane's `restrictions` property* — A high-occupancy vehicle lane | hov-lanes (8233) -`alternating-flow-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify alternating flow (alternating one way) via the lane's `status` property* — A lane where signal or flagger controls lane flow | -`reversible-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify reversible status via the lane's `status` property* — A lane in which traffic may travel in either direction, depending on certain conditions such as time of day | +`alternating-flow-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify alternating flow via the lane's `status` property (value of `alternating-flow`)* — A lane where signal or flagger controls lane flow | +`reversible-lane` (DEPRECATED) | *This value is deprecated and will be removed in a future version; specify reversible status via the lane's `status` property (value of `alternating-flow`)* — A lane in which traffic may travel in either direction, depending on certain conditions such as time of day | The following values from the TMDD LaneRoadway Enumeration are not used in the WZDx specification: