Skip to content

Commit

Permalink
Render barrier=planter as barrier=bollard.
Browse files Browse the repository at this point in the history
See #657.
  • Loading branch information
Phyks committed Mar 8, 2024
1 parent b118601 commit da03cf2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

* Prevent cyclestreets without cars from rendering as pedestrian streets. See #668.
* Unnecessary ending dot on node_network labels. See #663.
* Render `barrier=planter` as `barrier=bollard`. See #657.
* Render bicycle=permissive as bicycle=yes. See #602.
* Consider motor_vehicle=destination|agricultural|forestry as being no motor_vehicle ways. See #622.
* Add fallback values for oneway_bicycle to views.sql. See #627.
* Show cycleway without oneway tag as oneway=no
* Add aerialway = magic_carpet.
* Render unsegregated cycle track as light blue. See #652.
* Render `barrier=motorcycle_barrier` as `barrier=cycle_barrier`. See #637.
* Track width at z14 was smaller than in other zoom levels. See #411.
* Add a thin contour on buildings at mid zooms. See #411.
* Ensure bicycle crossing are drawn at crossings with highway=service. See #503.
* Handle `cycleway:left|right:oneway=-1` as aliases of
`cycleway:left|right=opposite_lane`. See #555.
* Cycleways and bicycle-designated paths with no oneway tag are now drawn like a
* Cycleways and bicycle-designated paths with no oneway tag are now drawn like a
cycleway/path with oneway=no tag. See #601
* Cycle tracks on roads rendered in shared light blue when cycleway[:left/:right/:both]:segregrated=no is set.
* Cycle tracks on roads rendered in shared light blue when
cycleway[:left/:right/:both]:segregrated=no is set.

## v0.6

Expand Down
1 change: 1 addition & 0 deletions amenities.mss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#barriers[zoom>=17][zoom<=20] {
[barrier = 'block'],
[barrier = 'bollard'],
[barrier = 'planter'],
[barrier = 'jersey_barrier'],
[barrier = 'log'] {
marker-width: 3;
Expand Down
2 changes: 1 addition & 1 deletion project.mml
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ Layer:
(
SELECT barrier, way, z_order
FROM planet_osm_point
WHERE barrier IN ('block', 'bollard', 'cattle_grid', 'chain', 'cycle_barrier', 'gate', 'jersey_barrier', 'kissing_gate', 'lift_gate', 'log', 'motorcycle_barrier', 'stile', 'swing_gate', 'turnstile')
WHERE barrier IN ('block', 'bollard', 'cattle_grid', 'chain', 'cycle_barrier', 'gate', 'jersey_barrier', 'kissing_gate', 'lift_gate', 'log', 'motorcycle_barrier', 'planter', 'stile', 'swing_gate', 'turnstile')
ORDER BY z_order NULLS LAST
) AS data
geometry: point
Expand Down

0 comments on commit da03cf2

Please sign in to comment.