-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update style with fallback to public_transport value. Add tests cover…
…ing Point/Polygon. DC example has no line data, not adding at this time. #115
- Loading branch information
1 parent
1e3706a
commit b3314bf
Showing
8 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
bus|Metro Bus 3Y 7Y 11Y 80 S1 16Y OmniRide G MTA Commuter Bus|2 | ||
bus|yes|13 | ||
highway|bus_stop|376 | ||
platform||1 | ||
station||50 | ||
stop_position||106 | ||
train|yes|24 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
platform||20 | ||
service_center||1 | ||
station||1 | ||
stop_area||1 | ||
train|yes|13 | ||
waiting_area||10 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
SELECT osm_type COLLATE "C", osm_subtype COLLATE "C", COUNT(*) | ||
FROM osm.public_transport_point | ||
GROUP BY osm_type COLLATE "C", osm_subtype COLLATE "C" | ||
ORDER BY osm_type COLLATE "C", osm_subtype COLLATE "C" | ||
; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
SELECT osm_type COLLATE "C", osm_subtype COLLATE "C", COUNT(*) | ||
FROM osm.public_transport_polygon | ||
GROUP BY osm_type COLLATE "C", osm_subtype COLLATE "C" | ||
ORDER BY osm_type COLLATE "C", osm_subtype COLLATE "C" | ||
; |