Skip to content

Commit

Permalink
Merge 1d23af0 into 4d6945b
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeLonewolf committed Oct 13, 2021
2 parents 4d6945b + 1d23af0 commit b7e8023
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion layers/transportation/transportation.sql
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ FROM (
public_transport,
service_value(service) AS service,
CASE WHEN access IN ('private', 'no') THEN 'no' END AS access,
CASE WHEN toll='yes' THEN true ELSE NULL::boolean END AS toll,
toll,
is_bridge,
is_tunnel,
is_ford,
Expand Down
4 changes: 1 addition & 3 deletions layers/transportation/update_transportation_merge.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ SELECT (ST_Dump(ST_LineMerge(ST_Collect(geometry)))).geom AS geometry,
CASE
WHEN access IN ('private', 'no') THEN 'no'
ELSE NULL::text END AS access,
CASE
WHEN toll = 'yes' THEN true
ELSE false END AS toll,
toll,
layer
FROM osm_highway_linestring_gen_z11
-- mapping.yaml pre-filter: motorway/trunk/primary/secondary/tertiary, with _link variants, construction, ST_IsValid()
Expand Down

0 comments on commit b7e8023

Please sign in to comment.