How to turn this:
dict = {"objects":[
{
"type": "node",
"id": 46049199,
"lat": 52.2925916,
"lon": 4.9485062,
"tags": {
"traffic_calming": "table"
}
},
{
"type": "node",
"id": 46053305,
"lat": 52.2936706,
"lon": 4.9469035,
"tags": {
"barrier": "gate"
}
},
{
"type": "node",
"id": 46053351,
"lat": 52.2934958,
"lon": 4.9463902
}
into this
coordTD2 = {46049199: [52.2925916, 4.9485062], 46053305: [52.2936706, 4.9469035], 4
46053351: [52.2934958, 4.9463902]}