Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify lane types and usage of lanes table #94

Merged
merged 29 commits into from
Sep 1, 2020
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6f4957a
Clarify each lane entry repesents a single lane
j-d-b May 29, 2020
ecee2f9
Remove comment about not numbering shoulders
j-d-b May 29, 2020
0591fa5
Remove plural lane types, cleanup
j-d-b May 29, 2020
b23c502
Update lane types enumeration in JSON schema
j-d-b May 29, 2020
b4a1d53
Require lane_number
j-d-b May 29, 2020
4034459
Update middle-lane description
j-d-b May 29, 2020
0e28ffb
Typo, remove 'center'
j-d-b May 29, 2020
687a8c9
Remove 'middle-two-lanes' from JSON schema
j-d-b May 29, 2020
5b60635
Merge branch 'v3.0' into clarify-lane-types
j-d-b Jun 3, 2020
6ae88aa
Move schema changes to draft v3.0
j-d-b Jun 3, 2020
bbf8033
Correct TMDD ID
j-d-b Jul 1, 2020
232f6e1
Add 'bidirectional' lane type
j-d-b Jul 1, 2020
1b78aaa
Remove bidirectional and add center-left-turn-lane and reversible-lane
j-d-b Jul 9, 2020
2f117cf
Add hov-lane
j-d-b Jul 9, 2020
16df4e1
Change total_num_lanes conformance to conditional
j-d-b Jul 9, 2020
c469b19
Merge branch 'master' into clarify-lane-types
j-d-b Aug 7, 2020
f830398
Merge branch 'master' into clarify-lane-types
j-d-b Aug 7, 2020
1c5b174
No lane edge reference; start from the left
j-d-b Aug 7, 2020
f2c71e3
Leave flexibility in total_num_lanes
j-d-b Aug 7, 2020
68dc0a2
Update lane types
j-d-b Aug 7, 2020
5f72b28
Add order and remove prefixes from type, status, restrictions
j-d-b Aug 7, 2020
ed6234d
Add center lane type
j-d-b Aug 7, 2020
09a95bc
Update examples to use order
j-d-b Aug 7, 2020
a9d8723
Merge branch 'v3.0' into clarify-lane-types
j-d-b Aug 12, 2020
fcfe536
Update enums notes for v3.0 changes
j-d-b Aug 12, 2020
2d2f6a9
Fix table rendering
j-d-b Aug 12, 2020
102e972
Update lane_number and order types to positive integer
j-d-b Aug 12, 2020
f4efb82
Update lane_number description
j-d-b Aug 12, 2020
98c5ca7
Update lane_number minimum value to 1 in schema
j-d-b Aug 13, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions create-feed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ The following WZDx feed examples include all optional fields. An example file is
The [schemas](/create-feed/schemas) directory includes a JSON Schema for the following WZDx feed versions:

* [WZDx v2.0 Feed](/create-feed/schemas/wzdx_v2.0_feed.json)
* [WZDx v3.0 Feed](/create-feed/schemas/wzdx_v3.0_feed.json)

## Data Validation Tools
## Version 3.0
Use the JSON schema linked above to validate a WZDx v3.0 feed.

### Version 2.0
Version 2 validation tools are being built. Documentation will be posted here when it is available.

Expand Down
36 changes: 18 additions & 18 deletions create-feed/examples/linestring_example.geojson
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"road_event_feed_info": {
"feed_update_date": "2010-01-01T01:01:01Z",
"metadata": "https://fake-site.tld/dummy-metadata.txt",
"version": "2.0"
"version": "3.0"
},
"type": "FeatureCollection",
"features": [
Expand Down Expand Up @@ -42,11 +42,11 @@
],
"lanes": [
{
"lane_edge_reference": "left",
"order": 1,
"lane_number": 1,
"lane_status": "open",
"lane_type": "left-lane",
"lane_restrictions": [
"status": "open",
"type": "left-lane",
"restrictions": [
{
"restriction_type": "reduced-width",
"restriction_value": 10,
Expand All @@ -55,16 +55,16 @@
]
},
{
"lane_edge_reference": "left",
"order": 2,
"lane_number": 2,
"lane_status": "closed",
"lane_type": "middle-lane"
"status": "closed",
"type": "middle-lane"
},
{
"lane_edge_reference": "left",
"order": 3,
"lane_number": 3,
"lane_status": "closed",
"lane_type": "right-lane"
"status": "closed",
"type": "right-lane"
}
]
},
Expand Down Expand Up @@ -270,21 +270,21 @@
],
"lanes": [
{
"lane_edge_reference": "left",
"order": 1,
"lane_number": 1,
"lane_status": "open",
"lane_type": "left-lane",
"lane_restrictions": [
"status": "open",
"type": "left-lane",
"restrictions": [
{
"restriction_type": "no-trucks"
}
]
},
{
"lane_edge_reference": "left",
"order": 2,
"lane_number": 2,
"lane_status": "open",
"lane_type": "right-lane"
"status": "open",
"type": "right-lane"
}
]
},
Expand Down
36 changes: 18 additions & 18 deletions create-feed/examples/multipoint_example.geojson
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"road_event_feed_info": {
"feed_update_date": "2010-01-01T01:01:01Z",
"metadata": "https://fake-site.tld/dummy-metadata.txt",
"version": "2.0"
"version": "3.0"
},
"type": "FeatureCollection",
"features": [
Expand Down Expand Up @@ -42,11 +42,11 @@
],
"lanes": [
{
"lane_edge_reference": "left",
"order": 1,
"lane_number": 1,
"lane_status": "open",
"lane_type": "left-lane",
"lane_restrictions": [
"status": "open",
"type": "left-lane",
"restrictions": [
{
"restriction_type": "reduced-width",
"restriction_value": 10,
Expand All @@ -55,16 +55,16 @@
]
},
{
"lane_edge_reference": "left",
"order": 2,
"lane_number": 2,
"lane_status": "closed",
"lane_type": "middle-lane"
"status": "closed",
"type": "middle-lane"
},
{
"lane_edge_reference": "left",
"order": 3,
"lane_number": 3,
"lane_status": "closed",
"lane_type": "right-lane"
"status": "closed",
"type": "right-lane"
}
]
},
Expand Down Expand Up @@ -118,21 +118,21 @@
],
"lanes": [
{
"lane_edge_reference": "left",
"order": 1,
"lane_number": 1,
"lane_status": "open",
"lane_type": "left-lane",
"lane_restrictions": [
"status": "open",
"type": "left-lane",
"restrictions": [
{
"restriction_type": "no-trucks"
}
]
},
{
"lane_edge_reference": "left",
"order": 2,
"lane_number": 2,
"lane_status": "open",
"lane_type": "right-lane"
"status": "open",
"type": "right-lane"
}
]
},
Expand Down
Loading