- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 GeoPandas Dataframe,是从 shapefile 对象创建的。然而,某些线路具有相同的名称,但位置却截然不同。
我想为每一行指定一个唯一的名称!因此,如果它们在几何上分开,我需要以某种方式分割线并重命名它们。
人们可以尝试计算所有街道 block 之间的距离,并在它们靠近时重新组合它们。
距离的计算可以在 Geopandas 中轻松完成:Distance Between Linestring Geopandas
一组要尝试的行:
from shapely.geometry import Point, LineString
import geopandas as gpd
line1 = LineString([
Point(0, 0),
Point(0, 1),
Point(1, 1),
Point(1, 2),
Point(3, 3),
Point(5, 6),
])
line2 = LineString([
Point(5, 3),
Point(5, 5),
Point(9, 5),
Point(10, 7),
Point(11, 8),
Point(12, 12),
])
line3 = LineString([
Point(9, 10),
Point(10, 14),
Point(11, 12),
Point(12, 15),
])
df = gpd.GeoDataFrame(
data={'name': ['A', 'A', 'A']},
geometry=[line1, line2, line3]
)
最佳答案
一种可能的方法是使用每个数据点的空间聚类。以下代码使用 DBSCAN,但也许其他类型更适合。以下是它们工作原理的概述:http://scikit-learn.org/stable/modules/clustering.html
from matplotlib import pyplot as plt
from sklearn.cluster import DBSCAN
from sklearn.preprocessing import StandardScaler
import numpy as np
import pandas as pd
import geopandas as gpd
df = gpd.GeoDataFrame.from_file("stackex_dataset.shp")
df 的每一行都是多个点。我们想把它们全部取出来得到簇:</p>
ids = []
coords = []
for row in df.itertuples():
geom = np.asarray(row.geometry)
coords.extend(geom)
ids.extend([row.id] * geom.shape[0])
我们需要 ids 来在计算后将簇返回到 df 。这是获取每个点的聚类(我们还对数据进行归一化以获得更好的质量):
clust = DBSCAN(eps=0.5)
clusters = clust.fit_predict(StandardScaler().fit_transform(coords))
下一部分有点困惑,但我们想确保每个 id 只得到一个簇。我们为每个 id 选择最频繁的点簇。
points_clusters = pd.DataFrame({"id":ids, "cluster":clusters})
points_clusters["count"] = points_clusters.groupby(["id", "cluster"])["id"].transform('size')
max_inds = points_clusters.groupby(["id", "cluster"])['count'].transform(max) == points_clusters['count']
id_to_cluster = points_clusters[max_inds].drop_duplicates(subset ="id").set_index("id")["cluster"]
然后我们将集群编号返回到我们的数据框中,以便我们可以借助该编号枚举我们的街道。
df["cluster"] = df["id"].map(id_to_cluster)
对于 DBSCAN 且 eps=0.5 的数据(您可以使用此参数 - 它是使它们处于一个簇中的点之间的最大距离。eps 越多,获得的簇就越少),我们有这种图片内容:
plt.scatter(np.array(coords)[:, 0], np.array(coords)[:, 1], c=clusters, cmap="autumn")
plt.show()
独立街道的数量为 8:
print(len(df["cluster"].drop_duplicates()))
如果我们降低 eps,例如clust = DBSCAN(eps=0.15) 我们得到更多的簇(此时为 12 个),这可以更好地分离数据:
关于代码的困惑部分:在源 DataFrame 中,我们有 170 行,每行都是一个单独的 LINESTRING 对象。每个 LINESTRING 由 2d 个点组成,各个 LINESTRING 之间的点数不同。因此,首先我们获取所有点(代码中的“坐标”列表)并预测每个点的聚类。我们有一种很小的可能性会在一个 LINESTRING 的点中呈现不同的簇。为了解决这种情况,我们获取每个簇的计数,然后过滤最大值。
关于python - 根据名称分割线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47988849/
我是一名优秀的程序员,十分优秀!