关于json-to-pandas数据框架有很多问题,但都没有解决我的问题。我正在练习这个复杂的JSON文件,它看起来像这样
{
"type" : "FeatureCollection",
"features" : [ {
"Id" : 265068000,
"type" : "Feature",
"geometry" : {
"type" : "Point",
"coordinates" : [ 22.170376666666666, 65.57273333333333 ]
},
"properties" : {
"timestampExternal" : 1529151039629
}
}, {
"Id" : 265745760,
"type" : "Feature",
"geometry" : {
"type" : "Point",
"coordinates" : [ 20.329506666666667, 63.675425000000004 ]
},
"properties" : {
"timestampExternal" : 1529151278287
}
} ]
}
我想使用
pd.read_json()
我的主要目标是提取ID、坐标和TimestampExternal。因为这是非常复杂的JSON,通常
pd.read_json()。
,只是不能给出正确的输出。你能给我建议吗,在这种情况下我该如何解决呢?预期输出如下
Id,Coordinates,timestampExternal
265068000,[22.170376666666666, 65.57273333333333],1529151039629
265745760,[20.329506666666667, 63.675425000000004],1529151278287