geoJSON:如何创建具有动态数量特征的 FeatureCollection?

geoJSON: How to create FeatureCollection with dynamic number of Features?

我在 Python 的列表中有一个特征列表(所有点)。这些功能是动态的,源于每 30 分钟更新一次的数据库数据。 因此我从来没有固定数量的功能。

我需要生成一个包含列表中所有功能的功能集合。 但是(据我所知)创建 FeatureCollection 的语法希望您将所有功能传递给它。

即:

FeatureClct = FeatureCollection(feature1, feature2, feature3)

如何在事先不知道会有多少特征的情况下生成一个 FeatureCollection?有没有办法将特征附加到现有的特征集合?

根据 python-geojson 的文档(我猜你正在使用,你没有提到它)你也可以将列表传递给 FeatureCollection,只需将所有结果进入列表,您就可以开始了:

feature1 = Point((45, 45));
feature2 = Point((-45, -45));

features = [feature1, feature2];

collection = FeatureCollection(features);

https://github.com/frewsxcv/python-geojson#featurecollection