forked from kamba4/sunders
moved files into subdirs
This commit is contained in:
parent
bf6ccf5094
commit
10fcf55b10
242 changed files with 23 additions and 0 deletions
12
data_handler_python/test.py
Normal file
12
data_handler_python/test.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
|
||||
import xml.etree.cElementTree as ET
|
||||
import gzip
|
||||
import requests
|
||||
|
||||
r = requests.get('https://planet.openstreetmap.org/replication/minute/000/000/001.osc.gz')
|
||||
|
||||
data = gzip.decompress(r.content)
|
||||
|
||||
tree = ET.fromstring(data)
|
||||
print(tree.findall("./."))
|
Loading…
Add table
Add a link
Reference in a new issue