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
|
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": { "name": "Honolulu Approach Inbound", "type": "lane_inbound" },
"geometry": {
"type": "Polygon",
"coordinates": [[
[-158.10, 21.15], [-157.95, 21.20], [-157.90, 21.28],
[-157.95, 21.32], [-158.10, 21.25], [-158.10, 21.15]
]]
}
},
{
"type": "Feature",
"properties": { "name": "Honolulu Approach Outbound", "type": "lane_outbound" },
"geometry": {
"type": "Polygon",
"coordinates": [[
[-158.10, 21.05], [-157.95, 21.10], [-157.90, 21.18],
[-157.95, 21.22], [-158.10, 21.14], [-158.10, 21.05]
]]
}
},
{
"type": "Feature",
"properties": { "name": "Honolulu Separation Zone", "type": "separation_zone" },
"geometry": {
"type": "Polygon",
"coordinates": [[
[-158.10, 21.14], [-157.95, 21.19], [-157.90, 21.23],
[-157.95, 21.26], [-158.10, 21.20], [-158.10, 21.14]
]]
}
}
]
}
|