-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosm.py
52 lines (47 loc) · 1.43 KB
/
osm.py
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
from xml.etree.ElementTree import ElementTree
import json
import urllib2
def data(req, bbox):
xml = urllib2.urlopen("http://www.openstreetmap.org/api/0.6/map?bbox="+bbox)
tree = ElementTree()
name = "me"
tree.parse(xml)
bounds = tree.find("bounds")
jbounds = {}
jbounds["minlat"] = bounds.get("minlat")
jbounds["minlon"] = bounds.get("minlon")
jbounds["maxlat"] = bounds.get("maxlat")
jbounds["maxlon"] = bounds.get("maxlon")
nodes = tree.findall("node")
jnodes = {}
for node in nodes:
jnodes[node.get("id")] = {
"lat":node.get("lat"),
"lon":node.get("lon"),
"join":[]
}
ways = tree.findall("way")
jways = []
for way in ways:
nds = way.findall("nd")
refs = []
prev_ref = None
jway = {}
tags = way.findall("tag")
for tag in tags:
k = tag.get("k")
v = tag.get("v")
jway[k] = v
if not "highway" in jway: continue
for nd in nds:
ref = nd.get("ref")
if prev_ref:
jnodes[ref]["join"].append(prev_ref)
jnodes[prev_ref]["join"].append(ref)
prev_ref = ref
#refs.append(ref)
#jway["nds"] = refs
#jways.append( jway )
data = { "bounds":jbounds, "ways":jways, "nodes":jnodes }
d = json.dumps(data)
return "_callback(" + d + ");"