【发布时间】:2017-02-08 16:39:33
【问题描述】:
我有一个包含 GeoJSON 对象的列表,如下所示:
{
"type": "Feature",
"properties": {
"ListEntry": 1440052.000000,
"Name": "Edmonton War Memorial",
"Location": "Enfield, London, N9",
"Grade": "II",
"ListDate": "2017\/01\/13",
"AmendDate": null,
"LegacyUID": null,
"NGR": "TQ3435693567",
"CaptureSca": "1:1250",
"Easting": 534356.190450,
"Northing": 193567.535720
},
"geometry": {
"type": "Point",
"coordinates": [
534356.190499999560416,
193567.535700000822544
]
}
}
关于geometry 键,如何将coordinates 转换为传统的纬度和经度,最好是在Python 中?
非常感谢。
【问题讨论】: