-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview_ways_info.sql
76 lines (73 loc) · 2.69 KB
/
view_ways_info.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
-- View: routing.way_info
-- DROP VIEW routing.way_info;
CREATE OR REPLACE VIEW routing.way_info AS
SELECT planet_osm_line.osm_id,
CASE
WHEN NOT (planet_osm_line.access = ANY (ARRAY['no'::text, 'private'::text, 'agriculture'::text, 'forestry'::text, 'dicouraged'::text])) THEN false
ELSE true
END AS public,
CASE
WHEN planet_osm_line.bicycle = 'yes'::text OR planet_osm_line.highway = 'cycleway'::text THEN true
ELSE false
END AS bicycle,
CASE
WHEN planet_osm_line.foot = 'yes'::text OR (planet_osm_line.highway = ANY (ARRAY['pedestrian'::text, 'footway'::text, 'path'::text, 'access_ramp'::text, 'elevator'::text, 'steps'::text])) THEN true
ELSE false
END AS foot,
CASE
WHEN planet_osm_line.horse = 'yes'::text THEN true
ELSE false
END AS horse,
CASE
WHEN planet_osm_line.oneway = 'yes'::text THEN true
ELSE false
END AS oneway,
CASE
WHEN planet_osm_line.lit = 'yes'::text THEN true
ELSE false
END AS lit,
CASE
WHEN planet_osm_line.ramp = 'yes'::text THEN true
ELSE false
END AS ramp,
CASE
WHEN planet_osm_line."ramp:wheelchair" = 'yes'::text THEN true
ELSE false
END AS ramp_wheelchair,
CASE
WHEN planet_osm_line."ramp:stroller" = 'yes'::text THEN true
ELSE false
END AS ramp_stroller,
CASE
WHEN planet_osm_line."ramp:bicycle" = 'yes'::text THEN true
ELSE false
END AS ramp_bicycle,
CASE
WHEN planet_osm_line.conveying = 'yes'::text THEN 'FT'::text
WHEN planet_osm_line.conveying = 'forward'::text THEN 'FT'::text
WHEN planet_osm_line.conveying = 'backward'::text THEN 'TF'::text
WHEN planet_osm_line.conveying = 'reversible'::text THEN 'B'::text
ELSE 'B'::text
END AS conveying,
CASE
WHEN planet_osm_line.bridge = 'yes'::text THEN true
ELSE false
END AS bridge,
CASE
WHEN planet_osm_line.covered = 'yes'::text THEN true
ELSE false
END AS covered,
planet_osm_line.highway,
planet_osm_line.route,
planet_osm_line.surface,
planet_osm_line.width,
planet_osm_line.sac_scale,
planet_osm_line.trail_visibility,
planet_osm_line.incline,
planet_osm_line.smoothness,
planet_osm_line.sloped_curb
FROM osm.planet_osm_line;
ALTER TABLE routing.way_info
OWNER TO osm;
GRANT ALL ON TABLE routing.way_info TO osm;
GRANT SELECT ON TABLE routing.way_info TO readonly;