-
Notifications
You must be signed in to change notification settings - Fork 48
/
polygon.go
244 lines (230 loc) · 4.89 KB
/
polygon.go
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package osm
import (
"encoding/json"
"sort"
)
// Polygon returns true if the way should be considered a closed polygon area.
// OpenStreetMap doesn't have an intrinsic area data type. The algorithm used
// here considers a set of heuristics to determine what is most likely an area.
// The heuristics can be found here,
// https://wiki.openstreetmap.org/wiki/Overpass_turbo/Polygon_Features
// and are used by osmtogeojson and overpass turbo.
func (w *Way) Polygon() bool {
if len(w.Nodes) <= 3 {
// need more than 3 nodes to be a polygon since first/last is repeated.
return false
}
if w.Nodes[0].ID != w.Nodes[len(w.Nodes)-1].ID {
// must be closed
return false
}
if area := w.Tags.Find("area"); area == "no" {
return false
} else if area != "" {
return true
}
for _, c := range polyConditions {
v := w.Tags.Find(c.Key)
if v == "" || v == "no" {
continue
}
if c.Condition == conditionAll {
return true
} else if c.Condition == conditionWhitelist {
index := sort.SearchStrings(c.Values, v)
if index != len(c.Values) && c.Values[index] == v {
return true
}
} else if c.Condition == conditionBlacklist {
index := sort.SearchStrings(c.Values, v)
if index == len(c.Values) || c.Values[index] != v {
return true
}
}
}
return false
}
func init() {
err := json.Unmarshal(polygonJSON, &polyConditions)
if err != nil {
// This must be valid json
panic(err)
}
for _, p := range polyConditions {
sort.StringSlice(p.Values).Sort()
}
}
var polyConditions []polyCondition
type polyCondition struct {
Key string `json:"key"`
Condition conditionType `json:"polygon"`
Values []string `json:"values"`
}
type conditionType string
var (
conditionAll conditionType = "all"
conditionBlacklist conditionType = "blacklist"
conditionWhitelist conditionType = "whitelist"
)
// polygonJSON holds advanced conditions for when an osm way is a polygon.
// Sourced from: https://wiki.openstreetmap.org/wiki/Overpass_turbo/Polygon_Features
// Also used by node lib: https://github.com/tyrasd/osmtogeojson
var polygonJSON = []byte(`
[
{
"key": "building",
"polygon": "all"
},
{
"key": "highway",
"polygon": "whitelist",
"values": [
"services",
"rest_area",
"escape",
"elevator"
]
},
{
"key": "natural",
"polygon": "blacklist",
"values": [
"coastline",
"cliff",
"ridge",
"arete",
"tree_row"
]
},
{
"key": "landuse",
"polygon": "all"
},
{
"key": "waterway",
"polygon": "whitelist",
"values": [
"riverbank",
"dock",
"boatyard",
"dam"
]
},
{
"key": "amenity",
"polygon": "all"
},
{
"key": "leisure",
"polygon": "all"
},
{
"key": "barrier",
"polygon": "whitelist",
"values": [
"city_wall",
"ditch",
"hedge",
"retaining_wall",
"wall",
"spikes"
]
},
{
"key": "railway",
"polygon": "whitelist",
"values": [
"station",
"turntable",
"roundhouse",
"platform"
]
},
{
"key": "boundary",
"polygon": "all"
},
{
"key": "man_made",
"polygon": "blacklist",
"values": [
"cutline",
"embankment",
"pipeline"
]
},
{
"key": "power",
"polygon": "whitelist",
"values": [
"plant",
"substation",
"generator",
"transformer"
]
},
{
"key": "place",
"polygon": "all"
},
{
"key": "shop",
"polygon": "all"
},
{
"key": "aeroway",
"polygon": "blacklist",
"values": [
"taxiway"
]
},
{
"key": "tourism",
"polygon": "all"
},
{
"key": "historic",
"polygon": "all"
},
{
"key": "public_transport",
"polygon": "all"
},
{
"key": "office",
"polygon": "all"
},
{
"key": "building:part",
"polygon": "all"
},
{
"key": "military",
"polygon": "all"
},
{
"key": "ruins",
"polygon": "all"
},
{
"key": "area:highway",
"polygon": "all"
},
{
"key": "craft",
"polygon": "all"
},
{
"key": "golf",
"polygon": "all"
},
{
"key": "indoor",
"polygon": "all"
}
]`)
// Polygon returns true if the relation is of type multipolygon or boundary.
func (r *Relation) Polygon() bool {
t := r.Tags.Find("type")
return t == "multipolygon" || t == "boundary"
}