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

Add is_abandoned flag to segments #132

Merged
merged 3 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 17 additions & 0 deletions examples/transportation/segment/road/road-abandoned.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
id: overture:transportation:segment:789
type: Feature
geometry:
type: LineString
coordinates: [[0, 0], [1, 1]]
properties:
# Overture properties
theme: transportation
type: segment
update_time: "2023-02-23T00:03:15-08:00"
version: 2
subtype: road
road:
class: tertiary
surface: gravel
flags: [is_abandoned]
1 change: 1 addition & 0 deletions schema/transportation/segment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ properties:
- is_link
- is_tunnel
- is_under_construction
- is_abandoned
roadSurface:
description: Physical surface of the road
type: string
Expand Down
Loading