首页 > 解决方案 > 如何从 Python 的 LineString 列表创建 GeoJSON

问题描述

我有一个看起来像这样的 python 列表:

type(route)
>>>list

print(route)

[{'type': 'LineString',
'coordinates': [[-94.586472, 39.098705],
 [-64.586487, 39.098716],
 [-64.585969, 39.094146],
 [-64.586037, 39.093936],
 [-64.586037, 39.093936],
 [-64.586046, 39.093933]]},
{'type': 'LineString',
'coordinates': [[-94.581459, 39.093506],
 [-64.581451, 39.09351],
 [-64.581444, 39.093506],
 [-64.581459, 39.093433],
 [-64.581726, 39.093418],
 [-64.588631, 39.087582]]},
{'type': 'LineString',
'coordinates': [[-94.584312, 39.042758],
 [-64.584312, 39.042758],
 [-64.583225, 39.099256],
 [-64.584328, 39.09932]]}]

如何将其转换为有效的 GeoJSON 文件?我试过test = FeatureCollection(features=route)了,但是当我后来转储它时创建了一个无效文件。

标签: pythongeojson

解决方案


看起来FeatureCollection需要每个项目都是一种类型,Feature模式与您当前的路线不同。最简单的解决方案是使用列表推导将每条路由映射到Feature架构中。

def route_to_feature(idx, route):
    return {
        'type': 'Feature',
        'geometry': route,
        'properties': {
            'name': f'Route #{idx}'
        }
    }

可以这样使用。

geojson.FeatureCollection([
    route_to_feature(i, route)
    for i, route
    in enumerate(routes)
])

推荐阅读