Last active
September 16, 2024 16:56
-
-
Save cliffordsnow/3543cc40c24c321bfc7f412ddb343a4a to your computer and use it in GitHub Desktop.
Skagit Transit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Skagit Transit (Washington, USA)" | |
| candidateNodeFilter: | | |
| ( | |
| ( | |
| $not($exists($v.tags.public_transport)) or | |
| $v.tags.public_transport != "stop_position" | |
| ) | |
| or | |
| ( | |
| /* We *do* want public_transport=stop_position for other modes of transport, like tram and rail */ | |
| $not($exists($v.tags.bus)) or | |
| $v.tags.bus = "no" | |
| ) | |
| ) | |
| and | |
| ( | |
| $not($exists($v.tags.operator)) or | |
| $contains($v.tags.operator, "Skagit Transit") or | |
| $contains($v.tags.network, "Skagit Transit") | |
| ) | |
| disusedStopFilter: | | |
| $contains($v.tags.operator, "Skagit Transit") or | |
| $contains($v.tags.network, "Skagit Transit") or | |
| $contains($v.tags.source, "Skagit Transit") or | |
| $contains($v.tags."gtfs:dataset_id", "ST") | |
| stopTags: | |
| operator: "Skagit Transit" | |
| operator:short: "ST" | |
| operator:wikidata: "Q6411393" | |
| operator:wikipedia: "en:Skagit Transit" | |
| gtfs:feed: "US-WA-SK" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment